hello sir
Thanks for ur guidance...In test.c file ..under the function void dac_dma_setup(uint32_t sel)...I encountered a set of code
for(index = 0; index < tx_count; index ++)
{
data_i = (sine_lut_i[index] << 16);
data_q = (sine_lut_q[index] << 0);
Xil_Out32(DDRDAC_BASEADDR + index * 4, data_i | data_q);
}
Whether Xil_Out32(DDRDAC_BASEADDR+index*4,data_i|data_q); displays the received data???..Should I need to check communication terminal simultaneously when opening hardware manager to view the waveform obtained??? Or any other function named Xil_Out32() should be included ??? if so where to include the function and help me with the steps to print out the values to UART....