-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed merge of user_settings with new TPM logic
- Loading branch information
1 parent
d5f4dc8
commit e08204b
Showing
10 changed files
with
194 additions
and
148 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
MEMORY | ||
{ | ||
FLASH (rx) : ORIGIN = 0x08000000, LENGTH = @BOOTLOADER_PARTITION_SIZE@ | ||
RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 0x00020000 /* mapping TCM only */ | ||
} | ||
|
||
SECTIONS | ||
{ | ||
.text : | ||
{ | ||
_start_text = .; | ||
KEEP(*(.isr_vector)) | ||
*(.text*) | ||
*(.rodata*) | ||
. = ALIGN(4); | ||
_end_text = .; | ||
} > FLASH | ||
|
||
.edidx : | ||
{ | ||
. = ALIGN(4); | ||
*(.ARM.exidx*) | ||
} > FLASH | ||
|
||
_stored_data = .; | ||
.data : AT (_stored_data) | ||
{ | ||
_start_data = .; | ||
KEEP(*(.data*)) | ||
. = ALIGN(4); | ||
KEEP(*(.ramcode)) | ||
. = ALIGN(4); | ||
_end_data = .; | ||
} > RAM | ||
|
||
.bss (NOLOAD) : | ||
{ | ||
_start_bss = .; | ||
__bss_start__ = .; | ||
*(.bss*) | ||
*(COMMON) | ||
. = ALIGN(4); | ||
_end_bss = .; | ||
__bss_end__ = .; | ||
_end = .; | ||
} > RAM | ||
. = ALIGN(4); | ||
} | ||
|
||
END_STACK = ORIGIN(RAM) + LENGTH(RAM); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.