Make netsim more like the esb target

This commit is contained in:
adamdunkels 2006-10-10 15:58:31 +00:00
parent 11c1762a62
commit bc8016543a
8 changed files with 59 additions and 45 deletions

View file

@ -28,7 +28,7 @@
*
* This file is part of the Contiki operating system.
*
* $Id: rs232.c,v 1.1 2006/06/17 22:41:36 adamdunkels Exp $
* $Id: rs232.c,v 1.2 2006/10/10 15:58:31 adamdunkels Exp $
*/
/**
@ -44,6 +44,12 @@
void
rs232_set_input(int (* f)(unsigned char))
{
printf("rs232_set_input(%p)\n", f);
/* printf("rs232_set_input(%p)\n", f);*/
}
/*---------------------------------------------------------------------------*/
void
slip_arch_writeb(unsigned char c)
{
printf("%c", c);
}
/*---------------------------------------------------------------------------*/