kongmunist / TeensyDAQ-Fast

Turn your Teensy into a data acquisition device with 100kHz+ sampling rate and record analog signals to the computer via Python
18 stars 2 forks source link

Synchronized Acquisition #1

Open bhclowers opened 3 years ago

bhclowers commented 3 years ago

This is surely an interesting project and it will surely serve as a learning experience. Two questions that come to mind are:

1.) Based upon the examples shown there appears to be some variability in the data acquisition rate. Is this correct or just the transfer speed? What I'm getting at is how to accuractly assign spacing between the points?

2.) Is there a way, from your perspective, to synchronize the data acquisition with an external trigger or is this best accomplished using multiple input channels on the Teensy and then align through post-processing?

Cheers

kongmunist commented 6 months ago

1) I have mostly fixed the jitter issue, previously there was a lot of variability in the data acquisition rate. 2) You could use a Teensy interrupt to trigger the data acquisition start/stop, this would be pretty closely synced.