Skip to content

Commit d886f0e

Browse files
authored
Merge pull request #85 from aidangarske/stm32n6-port-wolfip
STM32N6 (NUCLEO-N657X0-Q) wolfIP Port
2 parents ef515b1 + 8ff185d commit d886f0e

14 files changed

Lines changed: 2014 additions & 103 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: STM32N6 Build
2+
3+
on:
4+
push:
5+
branches: [ 'master', 'main', 'release/**' ]
6+
pull_request:
7+
branches: [ '*' ]
8+
9+
jobs:
10+
stm32n6_build:
11+
runs-on: ubuntu-latest
12+
timeout-minutes: 10
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Install ARM toolchain
18+
run: |
19+
set -euo pipefail
20+
sudo apt-get update
21+
sudo apt-get install -y gcc-arm-none-eabi
22+
23+
- name: Build STM32N6 echo firmware
24+
run: |
25+
set -euo pipefail
26+
make -C src/port/stm32n6 CC=arm-none-eabi-gcc OBJCOPY=arm-none-eabi-objcopy
27+
28+
- name: Verify binary
29+
run: |
30+
set -euo pipefail
31+
test -f src/port/stm32n6/app.bin
32+
arm-none-eabi-size src/port/stm32n6/app.elf

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,8 @@ CPPCHECK_FLAGS=--enable=warning,performance,portability,missingInclude \
119119
--suppress=comparePointers:src/port/stm32h563/syscalls.c \
120120
--suppress=comparePointers:src/port/stm32h753/startup.c \
121121
--suppress=comparePointers:src/port/stm32h753/syscalls.c \
122+
--suppress=comparePointers:src/port/stm32n6/startup.c \
123+
--suppress=comparePointers:src/port/stm32n6/syscalls.c \
122124
--suppress=comparePointers:src/port/va416xx/startup.c \
123125
--suppress=comparePointers:src/port/va416xx/syscalls.c \
124126
--disable=style \

0 commit comments

Comments
 (0)