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.

No source available for "_args_main() at 0x96ae" Error using CCS v5.2 for F28335



Hi all,

I was trying to run a simple program which I used to run in CCS v3.3 for F28335eZdsp and now I changed my system to windows 7 and installed CCS v5.2. While I was trying to debug the same program, the following error was obtained. No errors were found when building the program.

No source available for "_args_main() at 0x96ae" 

Any help would be greatly appreciated. Thanks in advance.

--Bhanu

  • Hi Bhanu,

    Nothing to worry. I hope you're able to debug too just this error pops up, right?

    Also, refer this link: http://e2e.ti.com/support/microcontrollers/c2000/f/171/t/252845.aspx

    Regards,

    Gautam

  • Bhanu,

    Whenever execution halts, the debugger tries to determine which line of code in which file just got run. The C standard libraries have enough debug information to tell you the name of the function you're in, but without the original source files it can only show you where you are in the disassembly. _args_main() probably handles the standard argc and argv arguments to main(). I doubt you're using those, so not having visibility into _args_main() shouldn't be a problem.

    Normally when you load a program, CCS will run to the main() function and stop. Is this not happening for you, or are you deliberately single-stepping from the start of execution?