Added a shell_start() function that prints out the shell prompt and a small helpful message

This commit is contained in:
adamdunkels 2008-02-24 20:35:03 +00:00
parent 33c2116f6a
commit 9c51d8ef1b
2 changed files with 13 additions and 3 deletions

View file

@ -28,7 +28,7 @@
*
* This file is part of the Contiki operating system.
*
* $Id: shell.h,v 1.4 2008/02/08 12:49:54 oliverschmidt Exp $
* $Id: shell.h,v 1.5 2008/02/24 20:35:03 adamdunkels Exp $
*/
/**
@ -53,6 +53,8 @@ struct shell_command {
void shell_init(void);
void shell_start(void);
void shell_input(char *commandline, int commandline_len);
int shell_start_command(char *commandline, int commandline_len,
struct shell_command *child,