diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2022-12-14 18:44:07 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2022-12-14 18:44:07 -0500 |
commit | 9b342c65c8a038ff980645452ab84556376bedc7 (patch) | |
tree | 59b235f448ef979cfa650c4999ee57f970f00274 /src/atsam | |
parent | dc94a357528013ae182e413c3d7ec6145450a075 (diff) | |
download | kutter-9b342c65c8a038ff980645452ab84556376bedc7.tar.gz kutter-9b342c65c8a038ff980645452ab84556376bedc7.tar.xz kutter-9b342c65c8a038ff980645452ab84556376bedc7.zip |
armcm_link: Rename CONFIG_FLASH_START to CONFIG_FLASH_APPLICATION_ADDRESS
Rename the build symbol name for better clarity on what it represents.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/atsam')
-rw-r--r-- | src/atsam/Kconfig | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/atsam/Kconfig b/src/atsam/Kconfig index af3d067d..4e2e839e 100644 --- a/src/atsam/Kconfig +++ b/src/atsam/Kconfig @@ -65,11 +65,6 @@ config CLOCK_FREQ default 120000000 if MACH_SAM4 default 300000000 if MACH_SAME70 -config FLASH_START - hex - default 0x400000 if MACH_SAM4 || MACH_SAME70 - default 0x80000 - config FLASH_SIZE hex default 0x80000 @@ -93,6 +88,11 @@ config STACK_SIZE int default 512 +config FLASH_APPLICATION_ADDRESS + hex + default 0x400000 if MACH_SAM4 || MACH_SAME70 + default 0x80000 + choice prompt "Communication interface" config ATSAM_USB |