Skip to content

Commit 2909daf

Browse files
authored
Update SDU.cpp
Add support for nano 33 iot
1 parent eb27f47 commit 2909daf

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

libraries/SDU/src/SDU.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#include "SDU.h"
2222

2323
__attribute__ ((section(".sketch_boot")))
24-
unsigned char sduBoot[0x4000] = {
24+
unsigned char sduBoot[0x6000] = {
2525
#if defined(ARDUINO_SAMD_ZERO)
2626
#include "boot/zero.h"
2727
#elif defined(ARDUINO_SAMD_MKR1000)
@@ -40,6 +40,9 @@ unsigned char sduBoot[0x4000] = {
4040
#include "boot/mkrnb1500.h"
4141
#elif defined(ARDUINO_SAM_ZERO)
4242
#include "boot/mzero.h"
43+
#elif defined(ARDUINO_SAMD_NANO_33_IOT)
44+
45+
#include "boot/nano_33_iot.h"
4346
#else
4447
#error "Unsupported board!"
4548
#endif

0 commit comments

Comments
 (0)