Direct Memory Access

Klagemauer:
Hello again, I just have a quick question regarding the usage of DMA. The way I understand it is
that it allows reading/writing data to the mcu's memory while bypassing the processing resources.
does that mean it would be possible that a micro controller reads , for example, an adc and stores the
result in its memory as a ring buffer repeatedly while a separate mcu reads the memory directly without having to deal with with the first mcu?

Thank you for your time.

If you want to do "stuff" while concurrently doing A/D readings, simply use an interrupt to call the A/D every "X" number of time intervals you need.