Renamed the serial module to serial-line

This commit is contained in:
adamdunkels 2009-03-18 07:20:18 +00:00
parent b9ef907690
commit 61d33173a3

View File

@ -28,14 +28,14 @@
* *
* This file is part of the Contiki operating system. * This file is part of the Contiki operating system.
* *
* $Id: sky-shell-webserver.c,v 1.1 2009/01/15 13:18:19 fros4943 Exp $ * $Id: sky-shell-webserver.c,v 1.2 2009/03/18 07:20:18 adamdunkels Exp $
*/ */
#include "contiki.h" #include "contiki.h"
#include "shell.h" #include "shell.h"
#include "serial-shell.h" #include "serial-shell.h"
#include "dev/serial.h" #include "dev/serial-line.h"
#include "dev/uart1.h" #include "dev/uart1.h"
#include "webserver-nogui.h" #include "webserver-nogui.h"
@ -54,8 +54,8 @@ PROCESS_THREAD(sky_shell_process, ev, data)
/* WITH_UIP=1 assumes incoming SLIP serial data. /* WITH_UIP=1 assumes incoming SLIP serial data.
* We override this assumption by restoring default serial input handler. */ * We override this assumption by restoring default serial input handler. */
uart1_set_input(serial_input_byte); uart1_set_input(serial_line_input_byte);
serial_init(); serial_line_init();
serial_shell_init(); serial_shell_init();