-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Description
I'm running Arduino 1.8.3 and have installed the cores for the Nucleo boards. I can successfully compile a simple Blink program and load it into the STM32F303 board. However, when I try to compile almost anything else, I get an error message that just says:
The system cannot find the path specified.
exit status 1
Error compiling for board Nucleo-32.
With verbose mode on, I get the following additional info:
C:\Program Files (x86)\Arduino\arduino-builder -dump-prefs -logger=machine -hardware C:\Program Files (x86)\Arduino\hardware -hardware C:\Users\Joe Rocci\AppData\Local\Arduino15\packages -tools C:\Program Files (x86)\Arduino\tools-builder -tools C:\Program Files (x86)\Arduino\hardware\tools\avr -tools C:\Users\Joe Rocci\AppData\Local\Arduino15\packages -built-in-libraries C:\Program Files (x86)\Arduino\libraries -libraries C:\Users\Joe Rocci\Documents\Arduino\libraries -fqbn=STM32:stm32:Nucleo_32:pnum=NUCLEO_F303K8,upload_method=STLink,xserial=generic,usb=none,opt=osstd -ide-version=10803 -build-path C:\Users\JOEROC1\AppData\Local\Temp\arduino_build_269521 -warnings=none -build-cache C:\Users\JOEROC1\AppData\Local\Temp\arduino_cache_536312 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.STM32Tools.path=C:\Users\Joe Rocci\AppData\Local\Arduino15\packages\STM32\tools\STM32Tools\2017.9.22 -prefs=runtime.tools.arm-none-eabi-gcc.path=C:\Users\Joe Rocci\AppData\Local\Arduino15\packages\STM32\tools\arm-none-eabi-gcc\6-2017-q2-update -prefs=runtime.tools.CMSIS.path=C:\Users\Joe Rocci\AppData\Local\Arduino15\packages\arduino\tools\CMSIS\4.5.0 -verbose C:\Users\Joe Rocci\Google Drive\STM32_Version\ubitx_20\ubitx_20.ino
C:\Program Files (x86)\Arduino\arduino-builder -compile -logger=machine -hardware C:\Program Files (x86)\Arduino\hardware -hardware C:\Users\Joe Rocci\AppData\Local\Arduino15\packages -tools C:\Program Files (x86)\Arduino\tools-builder -tools C:\Program Files (x86)\Arduino\hardware\tools\avr -tools C:\Users\Joe Rocci\AppData\Local\Arduino15\packages -built-in-libraries C:\Program Files (x86)\Arduino\libraries -libraries C:\Users\Joe Rocci\Documents\Arduino\libraries -fqbn=STM32:stm32:Nucleo_32:pnum=NUCLEO_F303K8,upload_method=STLink,xserial=generic,usb=none,opt=osstd -ide-version=10803 -build-path C:\Users\JOEROC1\AppData\Local\Temp\arduino_build_269521 -warnings=none -build-cache C:\Users\JOEROC1\AppData\Local\Temp\arduino_cache_536312 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.STM32Tools.path=C:\Users\Joe Rocci\AppData\Local\Arduino15\packages\STM32\tools\STM32Tools\2017.9.22 -prefs=runtime.tools.arm-none-eabi-gcc.path=C:\Users\Joe Rocci\AppData\Local\Arduino15\packages\STM32\tools\arm-none-eabi-gcc\6-2017-q2-update -prefs=runtime.tools.CMSIS.path=C:\Users\Joe Rocci\AppData\Local\Arduino15\packages\arduino\tools\CMSIS\4.5.0 -verbose C:\Users\Joe Rocci\Google Drive\STM32_Version\ubitx_20\ubitx_20.ino
Using board 'Nucleo_32' from platform in folder: C:\Users\Joe Rocci\AppData\Local\Arduino15\packages\STM32\hardware\stm32\2018.1.18
Using core 'arduino' from platform in folder: C:\Users\Joe Rocci\AppData\Local\Arduino15\packages\STM32\hardware\stm32\2018.1.18
cmd /c "if not exist C:\Users\Joe Rocci\Google Drive\STM32_Version\ubitx_20/build_opt.h mkdir C:\Users\JOEROC1\AppData\Local\Temp\arduino_build_269521\sketch & type NUL > C:\Users\JOEROC1\AppData\Local\Temp\arduino_build_269521/sketch/build_opt.h"
Any suggestions?
Joe