##// END OF EJS Templates
LPP DMA v1.0.1...
LPP DMA v1.0.1 - Correction of bugs due to "AHB bursts and 1kB address boundary" - Add TB for DMA with a RTL model of the external RAM CYC1360C in designs/Projet-LeonLFR-AP3K-Sheldon_sim-all

File last commit:

r99:fb73d940a921 martin
r102:ecadbe9f5050 JC
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;
}