##// END OF EJS Templates
update CAL 2/2 + driver C
update CAL 2/2 + driver C

File last commit:

r99:fb73d940a921 martin
r237:c95f017c99af martin
Show More
main.c
14 lines | 247 B | text/x-c | CLexer
#include <stdio.h>
#include "lpp_apb_functions.h"
#include "apb_uart_Driver.h"
int main()
{
printf("Debut Main\n\n");
UART_Device* dev = openUART(0);
while(1){
uartputc(dev,uartgetc(dev));
}
return 0;
}