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 have encountered this problem as shown above when trying to debug.
Can anyone help me solve this problem?
Thanks!
Eisen
PS: This is from the build console:
**** Build of configuration Debug for project TIVA_LEGITFINAL ****
"C:\\ti\\ccsv6\\utils\\bin\\gmake" -k all
'Building file: ../LCD_FYP1.c'
'Invoking: ARM Compiler'
"C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.7/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 --abi=eabi -me --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.7/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" -g --gcc --define=ccs="ccs" --define=DEBUG --define=TARGET_IS_BLIZZARD_RB1 --define=PART_TM4C123GH6PM --diag_wrap=off --display_error_number --diag_warning=225 --preproc_with_compile --preproc_dependency="LCD_FYP1.pp" "../LCD_FYP1.c"
At end of source: error #68: expected a "}"
1 error detected in the compilation of "../LCD_FYP1.c".
>> Compilation failure
gmake: *** [LCD_FYP1.obj] Error 1
gmake: Target `all' not remade because of errors.
**** Build Finished ****
And CCS did not show me any problems when building.
Hello,
Eisen Mah said:And CCS did not show me any problems when building.
Actually you had a build error:
Eisen Mah said:At end of source: error #68: expected a "}"
1 error detected in the compilation of "../LCD_FYP1.c".
You need to resolve this syntax error in that source file.
Because the build failed. No executable was generated. Hence when you tried to debug, you got the expected error of the debugger unable to load the program.
Thanks
ki
From your posted code, the terminating "}" is missing from the final function StopButtonPress in the LCD_FYP1.c source file.Eisen Mah said:At end of source: error #68: expected a "}"
1 error detected in the compilation of "../LCD_FYP1.c".