diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2022-12-19 12:04:54 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2022-12-30 21:28:32 -0500 |
commit | 34fd3f41ea1f819fb43b386334d01c13ffb4f781 (patch) | |
tree | e1e2e054011700040a58eb96c7a14f78f81c2fc3 /src/atsam | |
parent | 806cf233ec238802ce75c1f0a35cf9dcba1644f0 (diff) | |
download | kutter-34fd3f41ea1f819fb43b386334d01c13ffb4f781.tar.gz kutter-34fd3f41ea1f819fb43b386334d01c13ffb4f781.tar.xz kutter-34fd3f41ea1f819fb43b386334d01c13ffb4f781.zip |
usb_cdc: Only call bootloader_request() if CONFIG_HAVE_BOOTLOADER_REQUEST
Check for the build symbol prior to calling bootloader_request().
Enable the build symbol on rp2040, atsam, and atsamd chips.
This also enables serial bootloader requsts on rp2040, atsam, and
atsamd.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/atsam')
-rw-r--r-- | src/atsam/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/atsam/Kconfig b/src/atsam/Kconfig index 4e2e839e..aa802072 100644 --- a/src/atsam/Kconfig +++ b/src/atsam/Kconfig @@ -14,6 +14,7 @@ config ATSAM_SELECT select HAVE_STRICT_TIMING select HAVE_CHIPID select HAVE_STEPPER_BOTH_EDGE + select HAVE_BOOTLOADER_REQUEST config BOARD_DIRECTORY string |