contiki/tests/uart1-loopback.c

20 lines
292 B
C
Raw Normal View History

2010-02-24 14:45:45 -05:00
#include <mc1322x.h>
#include <board.h>
#include "tests.h"
2010-02-26 14:22:28 -05:00
#include "config.h"
void main(void) {
2010-02-24 14:45:45 -05:00
uint8_t c;
while(1) {
2010-02-24 14:45:45 -05:00
if(*UART1_CON > 0) {
/* Receive buffer isn't empty */
/* read a byte and write it to the transmit buffer */
2010-02-24 14:45:45 -05:00
c = *UART1_DATA;
*UART1_DATA = c;
}
2010-02-24 14:45:45 -05:00
}
}