ADC icon indicating copy to clipboard operation
ADC copied to clipboard

Teensy 4/3.x/LC ADC implementation

Results 33 ADC issues
Sort by recently updated
recently updated
newest added

I find your library very useful. I wanted to analyze how noisy the ADC is under different configurations, so I made this program using your library to plot a histogram...

Hello Pedro and Teensy devs, I am trying to get 4 ADCs to read at a sampling rate of 500 Khz or more on a Teensy 4.0. I have tried...

As is, the examples/adc_test errors on this line with an error like this: /Users/drf/Documents/Arduino/libraries/ADC/AnalogBufferDMA.cpp: In member function 'void AnalogBufferDMA::init(ADC*, int8_t)': /Users/drf/Documents/Arduino/libraries/ADC/AnalogBufferDMA.cpp:175:26: error: call to 'ADC::enableDMA' declared with attribute error: Use...

I have probably misunderstood the expected behaviour of [adc_timer_dma_oneshot.ino](https://github.com/pedvide/ADC/blob/master/examples/adc_timer_dma_oneshot/adc_timer_dma_oneshot.ino) example. After moving some defines below the includes, as suggested many times, ``` #include #include #include #if defined(ADC_USE_DMA) && defined(ADC_USE_TIMER) ```...

Hai The examples are not working correctly for teensy 4 I had to remove //#ifdef ADC_USE_TIMER in the timer example and than it is working ok. Also the other examples...

To recreate, generate a header file with `#include ` `#include ` and include that header in multiple compilation units. Linker will throw errors where functions in ADC_utils.h are defined multiple...

I try to compile the adc_timer_dma code and recieve the following error. : C:\Users\Gebruiker\Documents\Arduino\MySketchs\ADC adc_timer_dma_V5/ADCadc_timer_dma_V5.ino:68: undefined reference to `AnalogBufferDMA::init(ADC*, signed char)' I have tryed all the examples in this forum...

Hello, I'm using your ADC library with Teensy 4.0 It is working like a charm, thanks for sharing such good work ;-) I'm already using your DUAL_ADCS technic in order...

In order to measure analog signals from external clock source one either needs to use to PDB (pin 11) or LPTMR (pin13) hardware functions. Suggested updates provides support of ADC...

enhancement