2021-05-17 08:56:52 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "../../bsp/include/uart.h"
|
|
|
|
#include "../../bsp/include/xprintf.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2021-08-10 03:09:53 +00:00
|
|
|
uart0_init(uart0_putc);
|
2021-05-17 08:56:52 +00:00
|
|
|
|
|
|
|
while (1) {
|
|
|
|
// loopback
|
2021-08-10 03:09:53 +00:00
|
|
|
xprintf("%c", uart0_getc());
|
2021-05-17 08:56:52 +00:00
|
|
|
}
|
|
|
|
}
|