File tree Expand file tree Collapse file tree 7 files changed +2481
-1304
lines changed
variants/mkrfox1200/linker_scripts/gcc Expand file tree Collapse file tree 7 files changed +2481
-1304
lines changed Original file line number Diff line number Diff line change @@ -24,3 +24,4 @@ mkdir -p "$OUTPUT_PATH"
2424buildSDUBootSketch " arduino:samd:arduino_zero_edbg" " $OUTPUT_PATH /zero.h"
2525buildSDUBootSketch " arduino:samd:mkr1000" " $OUTPUT_PATH /mkr1000.h"
2626buildSDUBootSketch " arduino:samd:mkrzero" " $OUTPUT_PATH /mkrzero.h"
27+ buildSDUBootSketch " arduino:samd:mkrfox1200" " $OUTPUT_PATH /mkrfox1200.h"
Original file line number Diff line number Diff line change @@ -28,6 +28,8 @@ unsigned char sduBoot[0x4000] = {
2828 #include " boot/mkr1000.h"
2929#elif defined(ARDUINO_SAMD_MKRZERO)
3030 #include " boot/mkrzero.h"
31+ #elif defined(ARDUINO_SAMD_MKRFox1200)
32+ #include " boot/mkrfox1200.h"
3133#else
3234 #error "Unsupported board!"
3335#endif
Load Diff Large diffs are not rendered by default.
Load Diff Large diffs are not rendered by default.
Load Diff Large diffs are not rendered by default.
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -67,6 +67,9 @@ SECTIONS
6767 {
6868 __text_start__ = .;
6969
70+ KEEP (*(.sketch_boot ))
71+
72+ . = ALIGN (0x2000 );
7073 KEEP (*(.isr_vector ))
7174 *(.text *)
7275
You can’t perform that action at this time.
0 commit comments