Hello,
I am running TI's ECG MDK code for the TMS320C5515 & ADS1298 EVM boards and I'm encountering a problem while testing with the debugger. I have worked with the MDK before and I was able to run this code without issue
and view data using the PC application. Now I'm testing on another EVM, I loaded the ECGSystem.out file
but I am not seeing any data flow. It worked once in a single session where I could see the data on the PC, but it
is unclear why because I simply hit Debug with the same .out file. I ran through Resume / Stop and used
breakpoints to see that the program gets stuck in the below piece of code in ECGSystem_main, it cycles between the if and else if statements. Is there anything I can try to fix this? Thank you!
if(QRSDataReady == 1)
{
QRSDataReady =0;
ECG_SubSystem();
}
else if ( ReadKey )
{
KeyDetect();
ReadKey = 0;
}