From 71cddcea521a9a567b3658fee5177254a0142531 Mon Sep 17 00:00:00 2001 From: Matthew Kennedy Date: Sun, 7 Mar 2021 13:43:00 -0800 Subject: [PATCH] build h7 proteus (#2429) * build h7 * scripts Co-authored-by: Matthew Kennedy --- .github/workflows/build-firmware.yaml | 6 +++++- firmware/config/boards/proteus/compile_proteus_f4.sh | 2 -- firmware/config/boards/proteus/compile_proteus_h7.sh | 7 +++++++ 3 files changed, 12 insertions(+), 3 deletions(-) create mode 100644 firmware/config/boards/proteus/compile_proteus_h7.sh diff --git a/.github/workflows/build-firmware.yaml b/.github/workflows/build-firmware.yaml index d9d3911105..064fd3cdcf 100644 --- a/.github/workflows/build-firmware.yaml +++ b/.github/workflows/build-firmware.yaml @@ -12,7 +12,7 @@ jobs: matrix: # What boards should we build for? In the 'include' section below, # set up what each of these boards needs to build. - build-target: [hellen72, cypress, frankenso_na6, kinetis, mre_f4, mre_f4_recovery, mre_f4_hardware_QC_special_build, mre_f7, prometheus_405, prometheus_469, proteus_f4, proteus_f4_hardware_QC_special_build, proteus_f7, stm32f767_nucleo, stm32h743_nucleo, subaru_eg33_f7] + build-target: [hellen72, cypress, frankenso_na6, kinetis, mre_f4, mre_f4_recovery, mre_f4_hardware_QC_special_build, mre_f7, prometheus_405, prometheus_469, proteus_f4, proteus_f4_hardware_QC_special_build, proteus_f7, proteus_h7, stm32f767_nucleo, stm32h743_nucleo, subaru_eg33_f7] include: # Board configurations @@ -70,6 +70,10 @@ jobs: folder: proteus ini-file: rusefi_proteus_f7.ini + - build-target: proteus_h7 + folder: proteus + ini-file: rusefi_proteus_h7.ini + - build-target: stm32f767_nucleo folder: nucleo_f767 ini-file: no diff --git a/firmware/config/boards/proteus/compile_proteus_f4.sh b/firmware/config/boards/proteus/compile_proteus_f4.sh index d513d80fd6..7d59320a49 100644 --- a/firmware/config/boards/proteus/compile_proteus_f4.sh +++ b/firmware/config/boards/proteus/compile_proteus_f4.sh @@ -4,6 +4,4 @@ export PROJECT_BOARD=proteus export PROJECT_CPU=ARCH_STM32F4 export EXTRA_PARAMS=-DSHORT_BOARD_NAME=proteus_f4 -# export DEBUG_LEVEL_OPT="-O0 -ggdb -g" - bash ../common_make.sh diff --git a/firmware/config/boards/proteus/compile_proteus_h7.sh b/firmware/config/boards/proteus/compile_proteus_h7.sh new file mode 100644 index 0000000000..c2ab098c0e --- /dev/null +++ b/firmware/config/boards/proteus/compile_proteus_h7.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +export PROJECT_BOARD=proteus +export PROJECT_CPU=ARCH_STM32H7 +export EXTRA_PARAMS=-DSHORT_BOARD_NAME=proteus_h7 + +bash ../common_make.sh