summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/console.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/console.c b/common/console.c
index 20ec4ce50f..3743eae93a 100644
--- a/common/console.c
+++ b/common/console.c
@@ -547,7 +547,8 @@ void console_has_input(void)
#endif
/* Wake up the console task */
- task_wake(TASK_ID_CONSOLE);
+ if (task_start_called())
+ task_wake(TASK_ID_CONSOLE);
}
void console_task(void)