File tree Expand file tree Collapse file tree 4 files changed +69
-6
lines changed
libraries/Wire/examples/master_reader Expand file tree Collapse file tree 4 files changed +69
-6
lines changed Original file line number Diff line number Diff line change 885
885
"name" : " CMSIS-Atmel" ,
886
886
"version" : " 1.2.0"
887
887
}
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
+ ]
889
952
}
890
953
],
891
954
"tools" : [
1249
1312
"name" : " esp8266"
1250
1313
}
1251
1314
]
1252
- }
1315
+ }
Original file line number Diff line number Diff line change @@ -20,9 +20,9 @@ void setup()
20
20
21
21
void loop ()
22
22
{
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
26
26
Wire.endTransmission ();
27
27
28
28
while (Wire.available ()) // slave may send less than requested
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ tools.avrdude_remote.upload.pattern="openocd --version 2>&1 | grep 2016 && if op
131
131
#
132
132
# BOSSA
133
133
#
134
- tools.bossac.path={runtime.tools.bossac-1.7.0.path}
134
+ tools.bossac.path={runtime.tools.bossac-1.7.0-arduino3 .path}
135
135
tools.bossac.cmd=bossac
136
136
tools.bossac.cmd.windows=bossac.exe
137
137
You can’t perform that action at this time.
0 commit comments