Hello,
I am using the Adlam Pluto with Python to transimit a prebiuld vector with an activated cyclic buffer.
In my application I will repeat this a number of times and then stop the transmission.
Now I am searching for a way to query the number of cycles the buffer has taken.
Is there a register, that counts the number of revolmentes of the Buffer?
If not can I query the current position of the read pointer and than track the cycle count myself?
Maybe somethong like:
last_postion = 0 num_of_cyles=0 sdr = adi.Pluto() r = <The correct Register> position = dev.reg_read(r) if position < last_postion: #Cycle has happend num_of_cyles += 1 print(num_of_cyles) last_postion = position
Any help would be greatly appreciated!
Best regrads.