Skip to main content
Visitor II
August 2, 2024
Question

ADC trigger

  • August 2, 2024
  • 1 reply
  • 620 views

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?

    This topic has been closed for replies.

    1 reply

    Super User
    August 2, 2024

    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.