osd-contiki/tests/uart1-loopback.c

23 lines
371 B
C
Raw Normal View History

2010-02-24 20:45:45 +01:00
#include <mc1322x.h>
#include <board.h>
#include "tests.h"
2010-02-24 20:45:45 +01:00
/* INC = 767; MOD = 9999 works: 115200 @ 24 MHz 16 bit sample */
#define INC 767
#define MOD 9999
void main(void) {
2010-02-24 20:45:45 +01:00
uint8_t c;
while(1) {
2010-02-24 20:45:45 +01:00
if(*UART1_CON > 0) {
/* Receive buffer isn't empty */
/* read a byte and write it to the transmit buffer */
2010-02-24 20:45:45 +01:00
c = *UART1_DATA;
*UART1_DATA = c;
}
2010-02-24 20:45:45 +01:00
}
}