Merge pull request #740 from jepler/reboot-bootloader

atmel-samd: Fix rebooting to bootloader
This commit is contained in:
Scott Shawcroft 2018-04-03 22:35:39 -07:00 committed by GitHub
commit 5939497218
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 9 additions and 9 deletions

View File

@ -13,7 +13,7 @@ MEMORY
/* top end of the stack */ /* top end of the stack */
/* stack must be double-word (8 byte) aligned */ /* stack must be double-word (8 byte) aligned */
_estack = ORIGIN(RAM) + LENGTH(RAM) - 8; _estack = ORIGIN(RAM) + LENGTH(RAM) - 8;
_bootloader_dbl_tap = _estack; _bootloader_dbl_tap = ORIGIN(RAM) + LENGTH(RAM) - 4;
/* define output sections */ /* define output sections */
SECTIONS SECTIONS

View File

@ -13,7 +13,7 @@ MEMORY
/* top end of the stack */ /* top end of the stack */
/* stack must be double-word (8 byte) aligned */ /* stack must be double-word (8 byte) aligned */
_estack = ORIGIN(RAM) + LENGTH(RAM) - 8; _estack = ORIGIN(RAM) + LENGTH(RAM) - 8;
_bootloader_dbl_tap = _estack; _bootloader_dbl_tap = ORIGIN(RAM) + LENGTH(RAM) - 4;
/* define output sections */ /* define output sections */
SECTIONS SECTIONS

View File

@ -13,7 +13,7 @@ MEMORY
/* top end of the stack */ /* top end of the stack */
/* stack must be double-word (8 byte) aligned */ /* stack must be double-word (8 byte) aligned */
_estack = ORIGIN(RAM) + LENGTH(RAM) - 8; _estack = ORIGIN(RAM) + LENGTH(RAM) - 8;
_bootloader_dbl_tap = _estack; _bootloader_dbl_tap = ORIGIN(RAM) + LENGTH(RAM) - 4;
/* define output sections */ /* define output sections */
SECTIONS SECTIONS

View File

@ -13,7 +13,7 @@ MEMORY
/* top end of the stack */ /* top end of the stack */
/* stack must be double-word (8 byte) aligned */ /* stack must be double-word (8 byte) aligned */
_estack = ORIGIN(RAM) + LENGTH(RAM) - 8; _estack = ORIGIN(RAM) + LENGTH(RAM) - 8;
_bootloader_dbl_tap = _estack; _bootloader_dbl_tap = ORIGIN(RAM) + LENGTH(RAM) - 4;
/* define output sections */ /* define output sections */
SECTIONS SECTIONS

View File

@ -13,7 +13,7 @@ MEMORY
/* top end of the stack */ /* top end of the stack */
/* stack must be double-word (8 byte) aligned */ /* stack must be double-word (8 byte) aligned */
_estack = ORIGIN(RAM) + LENGTH(RAM) - 8; _estack = ORIGIN(RAM) + LENGTH(RAM) - 8;
_bootloader_dbl_tap = _estack; _bootloader_dbl_tap = ORIGIN(RAM) + LENGTH(RAM) - 4;
/* define output sections */ /* define output sections */
SECTIONS SECTIONS

View File

@ -13,7 +13,7 @@ MEMORY
/* top end of the stack */ /* top end of the stack */
/* stack must be double-word (8 byte) aligned */ /* stack must be double-word (8 byte) aligned */
_estack = ORIGIN(RAM) + LENGTH(RAM) - 8; _estack = ORIGIN(RAM) + LENGTH(RAM) - 8;
_bootloader_dbl_tap = _estack; _bootloader_dbl_tap = ORIGIN(RAM) + LENGTH(RAM) - 4;
/* define output sections */ /* define output sections */
SECTIONS SECTIONS

View File

@ -13,7 +13,7 @@ MEMORY
/* top end of the stack */ /* top end of the stack */
/* stack must be double-word (8 byte) aligned */ /* stack must be double-word (8 byte) aligned */
_estack = ORIGIN(RAM) + LENGTH(RAM) - 8; _estack = ORIGIN(RAM) + LENGTH(RAM) - 8;
_bootloader_dbl_tap = _estack; _bootloader_dbl_tap = ORIGIN(RAM) + LENGTH(RAM) - 4;
/* define output sections */ /* define output sections */
SECTIONS SECTIONS

View File

@ -13,7 +13,7 @@ MEMORY
/* top end of the stack */ /* top end of the stack */
/* stack must be double-word (8 byte) aligned */ /* stack must be double-word (8 byte) aligned */
_estack = ORIGIN(RAM) + LENGTH(RAM) - 8; _estack = ORIGIN(RAM) + LENGTH(RAM) - 8;
_bootloader_dbl_tap = _estack; _bootloader_dbl_tap = ORIGIN(RAM) + LENGTH(RAM) - 4;
/* define output sections */ /* define output sections */
SECTIONS SECTIONS

View File

@ -13,7 +13,7 @@ MEMORY
/* top end of the stack */ /* top end of the stack */
/* stack must be double-word (8 byte) aligned */ /* stack must be double-word (8 byte) aligned */
_estack = ORIGIN(RAM) + LENGTH(RAM) - 8; _estack = ORIGIN(RAM) + LENGTH(RAM) - 8;
_bootloader_dbl_tap = _estack; _bootloader_dbl_tap = ORIGIN(RAM) + LENGTH(RAM) - 4;
/* define output sections */ /* define output sections */
SECTIONS SECTIONS