diff --git a/firmware/config/boards/nucleo_f746/!compile-nucleo_f746.bat b/firmware/config/boards/nucleo_f746/!compile-nucleo_f746.bat index 2a9f22b591..84526ae679 100644 --- a/firmware/config/boards/nucleo_f746/!compile-nucleo_f746.bat +++ b/firmware/config/boards/nucleo_f746/!compile-nucleo_f746.bat @@ -4,7 +4,7 @@ rem cd ../../.. set PROJECT_BOARD=nucleo_F746 -set PROJECT_CPU=ST_STM32F7 +set PROJECT_CPU=ARCH_STM32F7 set EXTRA_PARAMS=-DDUMMY -DSTM32F746xx ^ -DEFI_INJECTOR_PIN3=GPIO_UNASSIGNED ^ -DEFI_COMMUNICATION_PIN=GPIOB_7 ^ diff --git a/firmware/config/boards/nucleo_f767/!compile-nucleo_f767.bat b/firmware/config/boards/nucleo_f767/!compile-nucleo_f767.bat index 3c6537db56..43d196e6f3 100644 --- a/firmware/config/boards/nucleo_f767/!compile-nucleo_f767.bat +++ b/firmware/config/boards/nucleo_f767/!compile-nucleo_f767.bat @@ -4,7 +4,7 @@ rem cd ../../.. set PROJECT_BOARD=nucleo_f767 -set PROJECT_CPU=ST_STM32F7 +set PROJECT_CPU=ARCH_STM32F7 set EXTRA_PARAMS=-DDUMMY -DSTM32F767xx ^ -DEFI_INJECTOR_PIN3=GPIO_UNASSIGNED ^ -DEFI_COMMUNICATION_PIN=GPIOB_7 ^ diff --git a/firmware/config/boards/nucleo_f767/!compile-osc_f767.bat b/firmware/config/boards/nucleo_f767/!compile-osc_f767.bat index 75036c453b..3610bc93a3 100644 --- a/firmware/config/boards/nucleo_f767/!compile-osc_f767.bat +++ b/firmware/config/boards/nucleo_f767/!compile-osc_f767.bat @@ -4,7 +4,7 @@ rem cd ../../.. set PROJECT_BOARD=nucleo_f767 -set PROJECT_CPU=ST_STM32F7 +set PROJECT_CPU=ARCH_STM32F7 set EXTRA_PARAMS=-DDUMMY -DSTM32F767xx ^ -DEFI_INJECTOR_PIN3=GPIO_UNASSIGNED ^ -DEFI_COMMUNICATION_PIN=GPIOB_7 ^ diff --git a/misc/jenkins/compile_other_versions/run.bat b/misc/jenkins/compile_other_versions/run.bat index 9f651b0f43..3663953fdc 100644 --- a/misc/jenkins/compile_other_versions/run.bat +++ b/misc/jenkins/compile_other_versions/run.bat @@ -14,6 +14,8 @@ cd .. echo Compiling F746 cd firmware\config\boards\nucleo_f746 call !compile-nucleo_f746.bat +if not exist build/rusefi.hex echo Just to confirm - FAILED to compile nucleo_f746 +if not exist build/rusefi.hex exit -1 cd .. pwd set bundle_name=stm32f746_nucleo @@ -27,6 +29,8 @@ cd .. echo Compiling F767 cd firmware\config\boards\nucleo_f767 call !compile-nucleo_f767.bat +if not exist build/rusefi.hex echo Just to confirm - FAILED to compile nucleo_f767 +if not exist build/rusefi.hex exit -1 cd .. pwd set bundle_name=stm32f767_nucleo @@ -40,7 +44,10 @@ call clean.bat cd .. echo Compiling F767 cd firmware\config\boards\nucleo_f767 -call !compile-f767.bat +call !compile-osc_f767.bat +if not exist build/rusefi.hex echo Just to confirm - FAILED to compile osc_f767 +if not exist build/rusefi.hex exit -1 + cd .. pwd set bundle_name=stm32f767_osc