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.
1 parent 6a76e15 commit 9978928Copy full SHA for 9978928
shared-module/time/__init__.c
@@ -48,7 +48,7 @@ void common_hal_time_delay_ms(uint32_t delay) {
48
// if the delay was cut short by a CTRL-C then clear the keyboard exception
49
if(MP_STATE_VM(mp_pending_exception) == MP_OBJ_FROM_PTR(&MP_STATE_VM(mp_kbd_exception)))
50
{
51
- MP_STATE_VM(mp_pending_exception) = MP_OBJ_NULL;
+ MP_STATE_VM (mp_pending_exception) = MP_OBJ_NULL;
52
nlr_raise(mp_obj_new_exception(&mp_type_KeyboardInterrupt));
53
}
54
0 commit comments