Reputation: 77
I am new to eclipse CDT software. I want to run an ADC program for LPC11C24 microcontroller. My program is compiling without any errors but its not Debugging.
It displays an following error:-
Error in final launch sequence
Failed to execute MI command:
source gdbinit
Error message from debugger back end:
gdbinit: No such file or directory.
gdbinit: No such file or directory.
And while compiling, I am able to read the ADC values but still it is not debugging.
Please help me out guys
Thx in advance
Upvotes: 0
Views: 1915
Reputation:
You need to provide an initialization file for gdb (such as gdbinit) or edit the gdb launcher configuration so that it doesn't expect to find gdbinit.
Upvotes: 0