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/atsamd/main.c | |
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/atsamd/main.c')
-rw-r--r-- | src/atsamd/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/atsamd/main.c b/src/atsamd/main.c index 37b6cc8b..96af22a0 100644 --- a/src/atsamd/main.c +++ b/src/atsamd/main.c @@ -14,7 +14,7 @@ void bootloader_request(void) { - if (!CONFIG_FLASH_START) + if (!CONFIG_FLASH_APPLICATION_ADDRESS) return; // Bootloader hack irq_disable(); |