RFSoC 4x2 change Threshold detect

hi,
play with the examples in the jupyter notebook.
I wonder, is it possible to change the threshold on the ADC example (see picture)?. I want to use the card like a scope.
PYNQ 2.7

Hi there,

You should be able to access those settings from the base.radio block, e.g:

base.radio.receiver.channel[0].adc_block.thresholds[0].Settings

However, according to the manual they’re more used to protect against invalid voltage levels and loss of data by keeping the incoming signal level within the full-scale range, rather than typical scope functions. You may have to implement separate IP/code to achieve scoping capabilities.

Thanks
Shawn

thank you Shawn
I will try it.
my problem is that I try to transfer sample fast then:

base.radio.receiver.channel[i].transfer(number_samples)

mybe base.dma.recvchannel.transfer?
thanks