Hello,
I set breakpoints in CaptureDemo_dataPathProcessEvents function in dss_main,as follows:
the console encounter the following error:
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hello,
I set breakpoints in CaptureDemo_dataPathProcessEvents function in dss_main,as follows:
the console encounter the following error:
Hi,
Does this code run without crashing when there are no breakpoints?
The EDMA is a peripheral in the 1642, similar to the SPI or UART. Halting the processor while a peripheral is running can cause it to crash because of the way the debugger interacts with the RTOS and the peripheral drivers. If the code was compiled with optimization, it is likely that the startDMATransfer function has already started running. When the processor hits the breakpoint, it cannot properly halt because the EDMA is running, so it goes to the abort.
Regards,
Justin