diff options
| author | HiFiPhile <[email protected]> | 2025-09-17 23:30:32 +0200 |
|---|---|---|
| committer | HiFiPhile <[email protected]> | 2025-09-17 23:44:01 +0200 |
| commit | 47bb79abe2e89f4bd7c7afa556cabc9e50fbbc3e (patch) | |
| tree | 3e62b9a9a92fb520082b062d19ef8d63179af2f6 /examples/device | |
| parent | be9409bfa738f00dc70d5e5bb99c0d9d61b69a34 (diff) | |
Fix board_reset_to_bootloader
Signed-off-by: HiFiPhile <[email protected]>
Diffstat (limited to 'examples/device')
| -rw-r--r-- | examples/device/cdc_dual_ports/src/main.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/examples/device/cdc_dual_ports/src/main.c b/examples/device/cdc_dual_ports/src/main.c index c50985276..8fe003f21 100644 --- a/examples/device/cdc_dual_ports/src/main.c +++ b/examples/device/cdc_dual_ports/src/main.c @@ -139,9 +139,7 @@ void tud_cdc_line_state_cb(uint8_t instance, bool dtr, bool rts) { cdc_line_coding_t coding; tud_cdc_get_line_coding(&coding); if (coding.bit_rate == 1200) { - if (board_reset_to_bootloader) { - board_reset_to_bootloader(); - } + board_reset_to_bootloader(); } } } |
