git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7671 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
Giovanni Di Sirio 2015-02-06 14:51:34 +00:00
parent 611d3863c5
commit 5233759836
1 changed files with 2 additions and 0 deletions

View File

@ -71,7 +71,9 @@ extern "C" {
#endif
void shellInit(void);
void shellExit(msg_t msg);
#if CH_CFG_USE_HEAP && CH_CFG_USE_DYNAMIC
thread_t *shellCreate(const ShellConfig *scp, size_t size, tprio_t prio);
#endif
thread_t *shellCreateStatic(const ShellConfig *scp, void *wsp,
size_t size, tprio_t prio);
bool shellGetLine(BaseSequentialStream *chp, char *line, unsigned size);