I've been fiddling around with the Raspberry Pi Pico as it has some quite interesting features and is dirt cheap along with being very fast.
The programmable PIO's are particularly useful as all of the pulse generation can be offloaded to little state machines which run independently of the main code and timing is 100% repeatable.
It's also very easy to develop and debug with if you use Python along with the PIO assembler language.
I've included an example Python file which generates a main pulse along with sample and efe pulses if anyone is interested.
The built-in ADC's look like they are 12-bit and can sample at 500kHz but the reference may need tweaking to make it stable enough for real measurements.
pi.py.zip
The programmable PIO's are particularly useful as all of the pulse generation can be offloaded to little state machines which run independently of the main code and timing is 100% repeatable.
It's also very easy to develop and debug with if you use Python along with the PIO assembler language.
I've included an example Python file which generates a main pulse along with sample and efe pulses if anyone is interested.
The built-in ADC's look like they are 12-bit and can sample at 500kHz but the reference may need tweaking to make it stable enough for real measurements.
pi.py.zip
Comment