How to detect and count lost interrupts of continuous circular DMA transfers (complete, half complete)?
Currently I implemented it using simple counteruint32 frameCount=0; ... halfcplt(); { frameCount++; ... } cplt(); { frameCount++ ... }and compare frameCount value to hardware timer value.I am in search of better solution without using hardware timer...