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.
Hi,
I cannot debug my code because the code stops at ESTOP line in device.c
My code builds very well.
I'm using the reference code from the folder below;
C:\C2000Ware_4_02_00_00\training\device\f28004x\getting_started\lab_blinkyled_driverlib
How can I resolve the issue? Why does the debug stops at this line?
I showed it as below;
Hi Ryan,
I push debug button and then play. Then the code halted at ESTOP line.
Which part do you require? What do you need?
By the way, code was RAM based and I changed the build option from RAM to FLASH by using setting FLASH active.
Hi Gokhan,
You are trying to set pins that are not Analog Mode capable (they don't need to set analog mode):
// // Check the arguments. // ASSERT(((pin >= 224U) && (pin <= 247U)) || (pin == 22) || (pin == 23));
Regards,
Vince