We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 96fc85c + 4e0f8e7 commit d4834cbCopy full SHA for d4834cb
ports/espressif/common-hal/busio/UART.c
@@ -49,8 +49,9 @@ static void uart_event_task(void *param) {
49
while (true) {
50
if (xQueueReceive(self->event_queue, &event, portMAX_DELAY)) {
51
switch (event.type) {
52
+ case UART_BREAK:
53
case UART_PATTERN_DET:
- // When the console uart receives CTRL+C, wake the main task and schedule a keyboard interrupt
54
+ // When the console uart receives CTRL+C or BREAK, wake the main task and schedule a keyboard interrupt
55
if (self->is_console) {
56
port_wake_main_task();
57
if (mp_interrupt_char == CHAR_CTRL_C) {
0 commit comments