osd-contiki/tests/uart1-loopback.c
2010-03-02 16:08:36 -05:00

22 lines
315 B
C

#include <mc1322x.h>
#include <board.h>
#include "tests.h"
#include "config.h"
void main(void) {
uart1_init(INC,MOD);
uint8_t c;
while(1) {
if(*UART1_CON > 0) {
/* Receive buffer isn't empty */
/* read a byte and write it to the transmit buffer */
c = *UART1_DATA;
*UART1_DATA = c;
}
}
}