2024-08-02 11:35 AM
Hello, I want to control the period of ADC conversions
The code needs to read two adc channels at the same time in a frequency of 10kHz, so, do some maths with this values and output in a DAC
What is the most efficient way to do that?
2024-08-02 01:32 PM
Hi,
which cpu ? which dac ?
>What is the most efficient way to do that
Write a program...
- timer -> triggers 2x ADC -> write to ram , with circular DMA
- do some...with data
- write new data with circular DMA to DAC
-- thats it.