We have an optical measurement system where we need to pulse LED and sample a phototransistor precisely during the LED pulse. The rate of sampling is 1 kHz and we plan to use 1:10 pulse ratio for the LED.
This far, I have written a working system than samples at 1 kHz using SAADC and DMA (using four channels, actually). The LED is not pulsed yet, but is on all the time.
I guess it is relatively simple to use pulse width modulation (PWM) to pulse the LED. However, I need to sychronize ADC with the PWM pulse. In another words, analog-to-digital conversion must happen about 100 us after the LED is put on.
My question is how to get this done? It would be best to stay in DMA based ADC, but is the synchronization with PWM possible? Or do I need to switch to interrupt based ADC (hopefully not)?