Skip to content

Commit 65512ce

Browse files
authored
Update tick.c
1 parent 182a873 commit 65512ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

supervisor/shared/tick.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,13 @@ void mp_hal_delay_ms(mp_uint_t delay) {
104104
// Check to see if we've been CTRL-Ced by autoreload or the user.
105105
if(MP_STATE_VM(mp_pending_exception) == MP_OBJ_FROM_PTR(&MP_STATE_VM(mp_kbd_exception)))
106106
{
107-
// clear exception and generate stacktrace
107+
// clear exception and generate stacktrace
108108
MP_STATE_VM(mp_pending_exception) = MP_OBJ_NULL;
109109
nlr_raise(mp_obj_new_exception(&mp_type_KeyboardInterrupt));
110110
}
111111
if( MP_STATE_VM(mp_pending_exception) == MP_OBJ_FROM_PTR(&MP_STATE_VM(mp_reload_exception)) ||
112112
WATCHDOG_EXCEPTION_CHECK()) {
113-
// stop sleeping immediately
113+
// stop sleeping immediately
114114
break;
115115
}
116116
remaining = end_tick - port_get_raw_ticks(NULL);

0 commit comments

Comments
 (0)