##// END OF EJS Templates
Mini LFR - 0.1.84
Mini LFR - 0.1.84

File last commit:

r99:fb73d940a921 martin
r617:7ac14cef3eb0 simu_with_Leon3
Show More
main.c
14 lines | 247 B | text/x-c | CLexer
martin
Modification UART (VHDL)...
r59 #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);
martin
Update and debug UART
r99 while(1){
uartputc(dev,uartgetc(dev));
}
martin
Modification UART (VHDL)...
r59 return 0;
}