* [update] fix finsh bug * [update] format code
@@ -168,8 +168,17 @@ int finsh_getchar(void)
}
while (rt_device_read(device, -1, &ch, 1) != 1)
+ {
rt_sem_take(&shell->rx_sem, RT_WAITING_FOREVER);
-
+ if (shell->device != device)
+ device = shell->device;
+ if (device == RT_NULL)
+ return -1;
+ }
return ch;
#endif /* RT_USING_POSIX_STDIO */
#else