aboutsummaryrefslogtreecommitdiffstats
path: root/os/various/shell.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-06-28 06:29:04 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-06-28 06:29:04 +0000
commitddc9ded3f065d8da59a843390814b1c19061c566 (patch)
treee185214b000ad0e5612620b0e0bfbcaf215a7b96 /os/various/shell.h
parente10edf16834d7dbe0c4ce7ea88c634e31b7d3113 (diff)
downloadChibiOS-ddc9ded3f065d8da59a843390814b1c19061c566.tar.gz
ChibiOS-ddc9ded3f065d8da59a843390814b1c19061c566.tar.bz2
ChibiOS-ddc9ded3f065d8da59a843390814b1c19061c566.zip
chprintf() implemented, improved the shell.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3093 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/various/shell.h')
-rw-r--r--os/various/shell.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/os/various/shell.h b/os/various/shell.h
index 9b3b70513..075d4e264 100644
--- a/os/various/shell.h
+++ b/os/various/shell.h
@@ -19,8 +19,9 @@
*/
/**
- * @file shell.h
- * @brief Simple CLI shell header.
+ * @file shell.h
+ * @brief Simple CLI shell header.
+ *
* @addtogroup SHELL
* @{
*/
@@ -79,8 +80,6 @@ extern "C" {
#endif
void shellInit(void);
Thread *shellCreate(const ShellConfig *scp, size_t size, tprio_t prio);
- void shellPrint(BaseChannel *chp, const char *msg);
- void shellPrintLine(BaseChannel *chp, const char *msg);
bool_t shellGetLine(BaseChannel *chp, char *line, unsigned size);
#ifdef __cplusplus
}