Syntax error: Unterminated quoted string
I am trying to program a STM32L476 Nucleo 64 board with a simple GPIO application using AC6 IDE. THe project was generated by the STM32CubeMX Plugin.
I changed project properties to “External Build” as opposed to “Internal Build” and I got the following error in the Console Window for the build operation:
Building file: ../Src/main.c
Invoking: MCU GCC Compiler
%cd%
arm-none-eabi-gcc -mcpu=cortex-m4 -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16 -Dweak=”attributeweak” -Dpacked=”attributepacked” -DUSE_HAL_DRIVER -DSTM32L476xx -I”C:/STM32 Nucleo Projects/Chimes1-ST-20161115/Inc” -I”C:/STM32 Nucleo Projects/Chimes1-ST-20161115/Drivers/STM32L4xx_HAL_Driver/Inc” -I”C:/STM32 Nucleo Projects/Chimes1-ST-20161115/Drivers/STM32L4xx_HAL_Driver/Inc/Legacy” -I”C:/STM32 Nucleo Projects/Chimes1-ST-20161115/Drivers/CMSIS/Device/ST/STM32L4xx/Include” -I”C:/STM32 Nucleo Projects/Chimes1-ST-20161115/Drivers/CMSIS/Include” -Os -g3 -Wall -fmessage-length=0 -ffunction-sections -c -fmessage-length=0 -MMD -MP -MF”Src/main.d” -MT”Src/main.o” -o “Src/main.o” “../Src/main.c”
Syntax error: Unterminated quoted string
make: *** Src/main.o Error 2
10:16:03 Build Finished (took 342ms)
This seems to say that main.o, the object code, had an unterminated quoted string. How does one fix that?
Dave