diff options
Diffstat (limited to 'testhal/STM32F1xx/EXT_WAKEUP/main.c')
-rw-r--r-- | testhal/STM32F1xx/EXT_WAKEUP/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testhal/STM32F1xx/EXT_WAKEUP/main.c b/testhal/STM32F1xx/EXT_WAKEUP/main.c index 26c8f9433..23c208873 100644 --- a/testhal/STM32F1xx/EXT_WAKEUP/main.c +++ b/testhal/STM32F1xx/EXT_WAKEUP/main.c @@ -86,6 +86,7 @@ static void cmd_reboot(BaseChannel *chp, int argc, char *argv[]){ return;
}
chprintf(chp, "rebooting...\r\n");
+ chThdSleepMilliseconds(100); // time to print out message in terminal
NVIC_SystemReset();
}
|