git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7671 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
611d3863c5
commit
5233759836
|
@ -71,7 +71,9 @@ extern "C" {
|
||||||
#endif
|
#endif
|
||||||
void shellInit(void);
|
void shellInit(void);
|
||||||
void shellExit(msg_t msg);
|
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);
|
thread_t *shellCreate(const ShellConfig *scp, size_t size, tprio_t prio);
|
||||||
|
#endif
|
||||||
thread_t *shellCreateStatic(const ShellConfig *scp, void *wsp,
|
thread_t *shellCreateStatic(const ShellConfig *scp, void *wsp,
|
||||||
size_t size, tprio_t prio);
|
size_t size, tprio_t prio);
|
||||||
bool shellGetLine(BaseSequentialStream *chp, char *line, unsigned size);
|
bool shellGetLine(BaseSequentialStream *chp, char *line, unsigned size);
|
||||||
|
|
Loading…
Reference in New Issue