File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -104,13 +104,13 @@ void mp_hal_delay_ms(mp_uint_t delay) {
104
104
// Check to see if we've been CTRL-Ced by autoreload or the user.
105
105
if (MP_STATE_VM (mp_pending_exception ) == MP_OBJ_FROM_PTR (& MP_STATE_VM (mp_kbd_exception )))
106
106
{
107
- // clear exception and generate stacktrace
107
+ // clear exception and generate stacktrace
108
108
MP_STATE_VM (mp_pending_exception ) = MP_OBJ_NULL ;
109
109
nlr_raise (mp_obj_new_exception (& mp_type_KeyboardInterrupt ));
110
110
}
111
111
if ( MP_STATE_VM (mp_pending_exception ) == MP_OBJ_FROM_PTR (& MP_STATE_VM (mp_reload_exception )) ||
112
112
WATCHDOG_EXCEPTION_CHECK ()) {
113
- // stop sleeping immediately
113
+ // stop sleeping immediately
114
114
break ;
115
115
}
116
116
remaining = end_tick - port_get_raw_ticks (NULL );
You can’t perform that action at this time.
0 commit comments