when using a bare metal MCU without rtos, the MCU will get stuck in _run(void) function. in below code the toggle led function is never excuted ``` while (1) { Shell.run(); HAL_GPIO_TogglePin(GPIOD, GPIO_PIN_4); } ```