From 1030004e7861ed21718d9261dac3c425d0c489a5 Mon Sep 17 00:00:00 2001 From: ZYH Date: Wed, 3 Apr 2019 14:43:02 +0800 Subject: [PATCH] remove finsh get char error print --- components/finsh/shell.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/components/finsh/shell.c b/components/finsh/shell.c index 0b3cc4169..53dcd11c6 100644 --- a/components/finsh/shell.c +++ b/components/finsh/shell.c @@ -297,7 +297,6 @@ static void finsh_wait_auth(void) ch = finsh_getchar(); if (ch < 0) { - rt_kprintf("finsh getchar error\n"); continue; } @@ -510,7 +509,6 @@ void finsh_thread_entry(void *parameter) ch = finsh_getchar(); if (ch < 0) { - rt_kprintf("finsh getchar error\n"); continue; } -- GitLab