In the RFSoC 2x2, I have seen in one of the notebooks that comes with the board (Notebook) that you can get data off the board by accessing the ADCs with the following command:
cdata.append(base.radio.receiver.channel[i].transfer(number_samples))
I have tested how much time it takes to perform the command and it’s 200ms. Meaning I can only get data every 200ms, I was looking for a quicker way to get the data or if there is some kind of buffering I can access so that I can get continuous data. Maybe I’m understanding something the wrong way.
Some parameters I’m using: sampling frequency: 4.096GHz, center frequency: 1.024GHz and number of samples: 1024
Thanks in advance.