diff --git a/components/finsh/shell.c b/components/finsh/shell.c index 48651d2c4f14d645334b5b52240fb5af634ef00c..7b577db6b6d0a15d6a2ad3d90f3cfb80f0026ce4 100644 --- a/components/finsh/shell.c +++ b/components/finsh/shell.c @@ -151,15 +151,19 @@ char finsh_getchar(void) char ch = 0; RT_ASSERT(shell != RT_NULL); + if (shell->device == RT_NULL) + { + return -RT_ERROR; + } while (rt_device_read(shell->device, -1, &ch, 1) != 1) rt_sem_take(&shell->rx_sem, RT_WAITING_FOREVER); return ch; -#endif +#endif /* RT_USING_POSIX */ #else extern char rt_hw_console_getchar(void); return rt_hw_console_getchar(); -#endif +#endif /* RT_USING_DEVICE */ } #if !defined(RT_USING_POSIX) && defined(RT_USING_DEVICE)