contiki/tests/uart1-loopback.c

20 lines
298 B
C
Raw Normal View History

2010-02-24 19:45:45 +00:00
#include <mc1322x.h>
#include <board.h>
#include "tests.h"
2010-02-26 19:22:28 +00:00
#include "config.h"
void main(void) {
2010-03-02 21:08:36 +00:00
2010-03-09 23:23:40 +00:00
uart1_init(INC,MOD,SAMP);
2010-02-24 19:45:45 +00:00
while(1) {
2010-03-09 23:23:40 +00:00
if(uart1_can_get()) {
/* Receive buffer isn't empty */
/* read a byte and write it to the transmit buffer */
2010-03-09 23:23:40 +00:00
uart1_putc(uart1_getc());
}
2010-02-24 19:45:45 +00:00
}
}