Skip to content

Commit 9132c4a

Browse files
committed
Add SDU support for MKR WiFi1010
1 parent 5f44b23 commit 9132c4a

File tree

3 files changed

+1239
-0
lines changed

3 files changed

+1239
-0
lines changed

libraries/SDU/extras/SDUBoot/build.sh

+1
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,4 @@ buildSDUBootSketch "arduino:samd:mkrzero" "$OUTPUT_PATH/mkrzero.h"
2727
buildSDUBootSketch "arduino:samd:mkrfox1200" "$OUTPUT_PATH/mkrfox1200.h"
2828
buildSDUBootSketch "arduino:samd:mkrgsm1400" "$OUTPUT_PATH/mkrgsm1400.h"
2929
buildSDUBootSketch "arduino:samd:mkrwan1300" "$OUTPUT_PATH/mkrwan1300.h"
30+
buildSDUBootSketch "arduino:samd:mkrwifi1010" "$OUTPUT_PATH/mkrwifi1010.h"

libraries/SDU/src/SDU.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ unsigned char sduBoot[0x4000] = {
3434
#include "boot/mkrgsm1400.h"
3535
#elif defined(ARDUINO_SAMD_MKRWAN1300)
3636
#include "boot/mkrwan1300.h"
37+
#elif defined(ARDUINO_SAMD_MKRWIFI1010)
38+
#include "boot/mkrwifi1010.h"
3739
#else
3840
#error "Unsupported board!"
3941
#endif

0 commit comments

Comments
 (0)