diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2022-11-03 12:41:28 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2022-11-08 09:53:04 -0500 |
commit | 42e9adcfc9963b54c71e8851e1a6a41a001531e5 (patch) | |
tree | 1ebbecfbe8eff81d4b1a5a66cc92b0e160a8d6dd /src/atsamd/usbserial.c | |
parent | 11dd273b34e78b82ec16d22495aa107233ac6779 (diff) | |
download | kutter-42e9adcfc9963b54c71e8851e1a6a41a001531e5.tar.gz kutter-42e9adcfc9963b54c71e8851e1a6a41a001531e5.tar.xz kutter-42e9adcfc9963b54c71e8851e1a6a41a001531e5.zip |
armcm_reset: Introduce Kconfig FLASH_BOOT_ADDRESS value
Specify the arm architecture flash bootup address for each chip type
in Kconfig using a new FLASH_BOOT_ADDRESS setting.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/atsamd/usbserial.c')
-rw-r--r-- | src/atsamd/usbserial.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/atsamd/usbserial.c b/src/atsamd/usbserial.c index 938f8e21..460de464 100644 --- a/src/atsamd/usbserial.c +++ b/src/atsamd/usbserial.c @@ -5,7 +5,7 @@ // This file may be distributed under the terms of the GNU GPLv3 license. #include <string.h> // memcpy -#include "autoconf.h" // CONFIG_FLASH_START +#include "autoconf.h" // CONFIG_MACH_SAMD21 #include "board/armcm_boot.h" // armcm_enable_irq #include "board/io.h" // writeb #include "board/usb_cdc.h" // usb_notify_ep0 |