Skip to content

Commit 7df510e

Browse files
committed
Merge branch 'master' into fork/JannisKonradBecker/master
2 parents 169d2d7 + 9c093a3 commit 7df510e

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ jobs:
111111

112112
# ---------------------------------------
113113
# Build IAR on HFP self-hosted
114+
# Since IAR Token secret is not passed to forked PR, only build on PR from the same repo
114115
# ---------------------------------------
115116
arm-iar:
116117
if: github.repository_owner == 'hathach' && github.event_name == 'push'

.github/workflows/hil_test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,10 @@ jobs:
9090
# ---------------------------------------
9191
# Hardware in the loop (HIL)
9292
# self-hosted by HFP, build with IAR toolchain, for attached hardware checkout test/hil/hfp.json
93+
# Since IAR Token secret is not passed to forked PR, only build on PR from the same repo
9394
# ---------------------------------------
9495
hil-hfp:
95-
if: github.repository_owner == 'hathach'
96+
if: github.repository_owner == 'hathach' && github.event.pull_request.head.repo.fork == false
9697
runs-on: [self-hosted, Linux, X64, hifiphile]
9798
env:
9899
IAR_LMS_BEARER_TOKEN: ${{ secrets.IAR_LMS_BEARER_TOKEN }}

hw/bsp/stm32f4/boards/stm32f407blackvet/board.mk

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
CFLAGS += -DSTM32F407xx
22

33
# GCC
4-
GCC_SRC_S += $(ST_CMSIS)/Source/Templates/gcc/startup_stm32f407xx.s
5-
GCC_LD_FILE = $(BOARD_PATH)/STM32F407VETX_FLASH.ld
4+
SRC_S_GCC += $(ST_CMSIS)/Source/Templates/gcc/startup_stm32f407xx.s
5+
LD_FILE_GCC = $(BOARD_PATH)/STM32F407VETx_FLASH.ld
66

77
# IAR
8-
IAR_SRC_S += $(ST_CMSIS)/Source/Templates/iar/startup_stm32f407xx.s
9-
IAR_LD_FILE = $(ST_CMSIS)/Source/Templates/iar/linker/stm32f407xx_flash.icf
8+
SRC_S_IAR += $(ST_CMSIS)/Source/Templates/iar/startup_stm32f407xx.s
9+
LD_FILE_IAR = $(ST_CMSIS)/Source/Templates/iar/linker/stm32f407xx_flash.icf
1010

1111

1212
# For flash-jlink target

0 commit comments

Comments
 (0)