Added the Telnet server to the examples supported by cc65.
This commit is contained in:
parent
baae42b2f8
commit
4af9f534cc
5 changed files with 11 additions and 0 deletions
|
@ -49,6 +49,12 @@ PROCESS_THREAD(shell_init_process, ev, data)
|
|||
{
|
||||
PROCESS_BEGIN();
|
||||
|
||||
#ifdef __CC65__
|
||||
shell_ps_init();
|
||||
shell_netstat_init();
|
||||
shell_wget_init();
|
||||
shell_memdebug_init();
|
||||
#else /* __CC65__ */
|
||||
shell_file_init();
|
||||
shell_httpd_init();
|
||||
shell_irc_init();
|
||||
|
@ -57,6 +63,7 @@ PROCESS_THREAD(shell_init_process, ev, data)
|
|||
shell_text_init();
|
||||
shell_time_init();
|
||||
shell_wget_init();
|
||||
#endif /* __CC65__ */
|
||||
|
||||
PROCESS_END();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue