diff options
| author | Damien George <damien@micropython.org> | 2021-04-28 10:57:34 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2021-04-30 15:13:43 +1000 |
| commit | e9e9c76ddf131f8e50b0ae2d44501d3cd88537ef (patch) | |
| tree | f9a89b19b8c1b74fd6c6f2ba004dcf174e6c4f1e /py/mpconfig.h | |
| parent | bd54eb566f85293279d02d0a663c7e4d9f59e660 (diff) | |
all: Rename mp_keyboard_interrupt to mp_sched_keyboard_interrupt.
To match mp_sched_exception() and mp_sched_schedule().
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'py/mpconfig.h')
| -rw-r--r-- | py/mpconfig.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/mpconfig.h b/py/mpconfig.h index 2934f8ec8..4445e9aee 100644 --- a/py/mpconfig.h +++ b/py/mpconfig.h @@ -1508,8 +1508,8 @@ typedef double mp_float_t; #define MICROPY_WRAP_MP_SCHED_EXCEPTION(f) f #endif -#ifndef MICROPY_WRAP_MP_KEYBOARD_INTERRUPT -#define MICROPY_WRAP_MP_KEYBOARD_INTERRUPT(f) f +#ifndef MICROPY_WRAP_MP_SCHED_KEYBOARD_INTERRUPT +#define MICROPY_WRAP_MP_SCHED_KEYBOARD_INTERRUPT(f) f #endif #ifndef MICROPY_WRAP_MP_SCHED_SCHEDULE |
