diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2022-12-19 11:54:19 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2022-12-30 21:28:32 -0500 |
commit | 4ca1e5f670616491cf27de833a90290d0aaf6fb0 (patch) | |
tree | edec509c116ea323da4fd4a53f3e6dc39b0415e3 /src/generic | |
parent | 4753315601b4203c500c979f87b2e55be2aedaa5 (diff) | |
download | kutter-4ca1e5f670616491cf27de833a90290d0aaf6fb0.tar.gz kutter-4ca1e5f670616491cf27de833a90290d0aaf6fb0.tar.xz kutter-4ca1e5f670616491cf27de833a90290d0aaf6fb0.zip |
serial_irq: Rename SERIAL_BOOTLOADER_SIDECHANNEL to HAVE_BOOTLOADER_REQUEST
Rename the build symbol. This is in preparation for enabling
HAVE_BOOTLOADER_REQUEST on usb and canbus.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/generic')
-rw-r--r-- | src/generic/serial_irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/generic/serial_irq.c b/src/generic/serial_irq.c index 434a98bb..98910735 100644 --- a/src/generic/serial_irq.c +++ b/src/generic/serial_irq.c @@ -79,7 +79,7 @@ console_task(void) if (ret > 0) command_dispatch(receive_buf, pop_count); if (ret) { - if (CONFIG_SERIAL_BOOTLOADER_SIDECHANNEL && ret < 0 && pop_count == 32 + if (CONFIG_HAVE_BOOTLOADER_REQUEST && ret < 0 && pop_count == 32 && !memcmp(receive_buf, " \x1c Request Serial Bootloader!! ~", 32)) bootloader_request(); console_pop_input(pop_count); |