Skip to content

Commit 4edb4d2

Browse files
committed
2 parents 1be213f + 4ccf3a9 commit 4edb4d2

File tree

4 files changed

+69
-6
lines changed

4 files changed

+69
-6
lines changed

IDE_Board_Manager/package_sparkfun_index.json

Lines changed: 65 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -885,7 +885,70 @@
885885
"name": "CMSIS-Atmel",
886886
"version": "1.2.0"
887887
}
888-
]
888+
]
889+
},
890+
{
891+
"name": "SparkFun SAMD Boards (dependency: Arduino SAMD Boards 1.8.1)",
892+
"architecture": "samd",
893+
"version": "1.6.2",
894+
"category": "Contributed",
895+
"url": "https://github.com/sparkfun/Arduino_Boards/raw/master/IDE_Board_Manager/sparkfun-samd-1.6.2.tar.bz2",
896+
"archiveFileName": "sparkfun-samd-1.6.2.tar.bz2",
897+
"checksum": "SHA-256:C06952DC372B9C42B4B308C44449979AC6B4F8B87356C45061E3B1CBCC699B2D",
898+
"size": "1619901",
899+
"help": {
900+
"online": "https://learn.sparkfun.com/tutorials/installing-arduino-ide/board-add-ons-with-arduino-board-manager"
901+
},
902+
"boards": [
903+
{
904+
"name": "SparkFun SAMD21 Mini Breakout"
905+
},
906+
{
907+
"name": "SparkFun SAMD21 Dev Breakout"
908+
},
909+
{
910+
"name": "SparkFun 9DoF Razor IMU M0"
911+
},
912+
{
913+
"name": "LilyPad LilyMini"
914+
},
915+
{
916+
"name": "Sparkfun SAMD21 Pro RF"
917+
},
918+
{
919+
"name": "Sparkfun RedBoard Turbo"
920+
},
921+
{
922+
"name": "Sparkfun SAMD51 Thing Plus"
923+
}
924+
],
925+
"toolsDependencies": [
926+
{
927+
"packager": "arduino",
928+
"name": "arm-none-eabi-gcc",
929+
"version": "4.8.3-2014q1"
930+
},
931+
{
932+
"packager": "arduino",
933+
"name": "bossac",
934+
"version": "1.8.0-48-gb176eee"
935+
},
936+
{
937+
"packager": "arduino",
938+
"name": "openocd",
939+
"version": "0.9.0-arduino"
940+
},
941+
{
942+
"packager": "arduino",
943+
"name": "CMSIS",
944+
"version": "4.5.0"
945+
},
946+
{
947+
"packager": "arduino",
948+
"name": "CMSIS-Atmel",
949+
"version": "1.2.0"
950+
}
951+
]
889952
}
890953
],
891954
"tools": [
@@ -1249,4 +1312,4 @@
12491312
"name": "esp8266"
12501313
}
12511314
]
1252-
}
1315+
}
1.54 MB
Binary file not shown.

sparkfun/samd/libraries/Wire/examples/master_reader/master_reader.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ void setup()
2020

2121
void loop()
2222
{
23-
Wire.beginTransmission(0x28);
24-
Wire.write(0xFD);
25-
Wire.requestFrom(0x28, 1); // request 6 bytes from slave device #2
23+
Wire.beginTransmission(0x69);
24+
Wire.write(0x14);
25+
Wire.requestFrom(0x69, 1); // request 6 bytes from slave device #2
2626
Wire.endTransmission();
2727

2828
while(Wire.available()) // slave may send less than requested

sparkfun/samd/platform.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ tools.avrdude_remote.upload.pattern="openocd --version 2>&1 | grep 2016 && if op
131131
#
132132
# BOSSA
133133
#
134-
tools.bossac.path={runtime.tools.bossac-1.7.0.path}
134+
tools.bossac.path={runtime.tools.bossac-1.7.0-arduino3.path}
135135
tools.bossac.cmd=bossac
136136
tools.bossac.cmd.windows=bossac.exe
137137

0 commit comments

Comments
 (0)