8000 esp8266/uart: Allow to compile with event-driven REPL. · micropython/micropython@01dcd5b · GitHub
[go: up one dir, main page]

Skip to content

Commit 01dcd5b

Browse files
committed
esp8266/uart: Allow to compile with event-driven REPL.
1 parent 9d8347a commit 01dcd5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ports/esp8266/uart.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ void uart_task_handler(os_event_t *evt) {
276276

277277
int c, ret = 0;
278278
while ((c = ringbuf_get(&input_buf)) >= 0) {
279-
if (c == interrupt_char) {
279+
if (c == mp_interrupt_char) {
280280
mp_keyboard_interrupt();
281281
}
282282
ret = pyexec_event_repl_process_char(c);

0 commit comments

Comments
 (0)
0