Hi , im working on ZYNQ 7000 digiland board
dma = ol.axi_dma
data_size = 1024
output_buffer = allocate(shape=(data_size,), dtype=np.uint32)
Test a single DMA transfer
try:
dma.recvchannel.transfer(output_buffer)
dma.recvchannel.wait() # Check if this runs without errors
print(“DMA transfer completed successfully.”)
except RuntimeError as e:
print(f"Error: {e}")
how should i get data from known address range
thanks