Pedro Villanueva
Pedro Villanueva
See also PR #40, it has some code we may want to use.
I think arduino is using an older version of the library, the one you installed with Teensy instead of the one you downloaded. I'm not sure what's the best way...
I'm rewriting the whole DMA thing. As you rightly point out it doesn't really work. The new DMARingBuffer will be a ping pong buffer and the RingBuffer will be a...
That library is using an old version of this library. Some function calls are different.for example `adc->adc0->enableInterrupts();` has become now `adc->enableInterrupts(adc0_isr);`, so you need to pass the isr directly. You...
I've never seen anything like that, but I don't run a Teensy continuously. In the datasheet there's a limit to the speed the ADC can run, if you use higher...
The library doesn't support this, but I think depending on the Teensy model it is possible to do something like this using DMA. Basically you have a buffer with the...
`readSynchronizedSingle` is supposed to just read the values, like it does now. The user is supposed to check that the conversion has finished. I guess that maybe there should be...
The example is fine in the master branch. I'm not sure what version of the library that code is from, but now it's fixed as far as I can see.
I'll try to have a look at it soon! Thanks!!
Yeah that seems off. Maybe I'll have time to look into in during the weekend, thanks for reporting it.