I am implementing UART in microblaze xilinx 13.1. I want to store the rx value in fifo which is implemented using xilinx ipcore in VHDL.
I got the received byte like this,
while(1) {
Recvd_Byte = XUartLite_RecvByte(0x40600000);
}
I have implemented fifo in my VHDL code. Both system.xmp and fifo are components under my top module.
How I can access this Recvd_Byte in C code and pass to the fifo(fifo_wr_data) in VHDL.
Please help me. I am new to the microblaze.