Go to the source code of this file.
Functions | |
void | shell_init (void) |
void | shell_start (void) |
void | shell_input (char *command) |
void | shell_quit (char *) |
void | shell_output (char *str1, char *str2) |
void | shell_prompt (char *prompt) |
Interface for the Contiki shell.
Some of the functions declared in this file must be implemented as a shell back-end in the architecture specific files of a Contiki port.
Definition in file shell.h.
void shell_init | ( | void | ) |
void shell_input | ( | char * | command | ) |
void shell_output | ( | char * | str1, | |
char * | str2 | |||
) |
Print a string to the shell window.
This function is implemented by the shell GUI / telnet server and can be called by the shell back-end to output a string in the shell window. The string is automatically appended with a linebreak.
str1 | The first half of the string to be output. | |
str2 | The second half of the string to be output. |
Definition at line 113 of file telnetd.c.
void shell_prompt | ( | char * | prompt | ) |
void shell_quit | ( | char * | ) |