Skip to content

Commit 6e0a2b5

Browse files
committed
Add SDU support for the MKR NB 1500
1 parent adc0753 commit 6e0a2b5

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
@@ -28,4 +28,5 @@ 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"
3030
buildSDUBootSketch "arduino:samd:mkrwifi1010" "$OUTPUT_PATH/mkrwifi1010.h"
31+
buildSDUBootSketch "arduino:samd:mkrnb1500" "$OUTPUT_PATH/mkrnb1500.h"
3132
buildSDUBootSketch "arduino:samd:mzero_bl" "$OUTPUT_PATH/mzero.h"

libraries/SDU/src/SDU.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ unsigned char sduBoot[0x4000] = {
3636
#include "boot/mkrwan1300.h"
3737
#elif defined(ARDUINO_SAMD_MKRWIFI1010)
3838
#include "boot/mkrwifi1010.h"
39+
#elif defined(ARDUINO_SAMD_MKRNB1500)
40+
#include "boot/mkrnb1500.h"
3941
#elif defined(ARDUINO_SAM_ZERO)
4042
#include "boot/mzero.h"
4143
#else

0 commit comments

Comments
 (0)