Changes to NSH and readline to permit NSH to work on a platform with no file system

This commit is contained in:
Gregory Nutt
2013-09-30 11:34:04 -06:00
parent 50123bd30f
commit 647aff0ded
2 changed files with 18 additions and 1 deletions
+11 -1
View File
@@ -362,7 +362,7 @@ void up_release_pending(void);
*
* Description:
* Called when the priority of a running or
* ready-to-run task changes and the reprioritization will
* ready-to-run task changes and the reprioritization will
* cause a context switch. Two cases:
*
* 1) The priority of the currently running task drops and the next
@@ -1111,6 +1111,16 @@ void relays_powermodes(uint32_t relays_stat);
int up_putc(int ch);
/****************************************************************************
* Name: up_getc
*
* Description:
* Get one character on the console
*
****************************************************************************/
int up_getc(void);
#ifdef __cplusplus
}
#endif