diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2022-09-01 21:28:59 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2022-09-05 14:27:25 -0400 |
commit | 84ec2813ab592c1b0460b0a6fa1e302842ccf0a9 (patch) | |
tree | e3a66be6f04b205d1317ec0406b2ebf27c9526f2 /src/Kconfig | |
parent | ba38897a357b285f05cc3444227345a47b97590d (diff) | |
download | kutter-84ec2813ab592c1b0460b0a6fa1e302842ccf0a9.tar.gz kutter-84ec2813ab592c1b0460b0a6fa1e302842ccf0a9.tar.xz kutter-84ec2813ab592c1b0460b0a6fa1e302842ccf0a9.zip |
serial_irq: Support side channel for entering bootloader
Add a mechanism to request the bootloader when using serial input.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Kconfig b/src/Kconfig index 08a57c16..b6a7c1d1 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -44,6 +44,8 @@ source "src/simulator/Kconfig" # Generic configuration options for serial ports config SERIAL bool +config SERIAL_BOOTLOADER_SIDECHANNEL + bool config SERIAL_BAUD depends on SERIAL int "Baud rate for serial port" if LOW_LEVEL_OPTIONS |