Skip to content

Commit 15457af

Browse files
committed
feat: add nrf9151dk+wifi support
Signed-off-by: Maximilian Deubel <[email protected]>
1 parent f6a2b1b commit 15457af

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

.github/workflows/build-and-release.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ jobs:
8282
# Thingy:91 X
8383
- thingy91x.wifi
8484
- thingy91x.low-power.wifi
85+
# nRF9151-DK with nRF7002-EK WiFi shield
86+
- nrf9151dk.wifi
8587

8688
steps:
8789
- uses: actions/checkout@v4
@@ -118,6 +120,10 @@ jobs:
118120
if: contains(matrix.configuration, 'nrf9160dk')
119121
run: echo '[email protected]' >> $GITHUB_ENV
120122

123+
- name: Configure for 9151DK
124+
if: contains(matrix.configuration, 'nrf9151dk')
125+
run: echo 'board=nrf9151dk_nrf9151_ns' >> $GITHUB_ENV
126+
121127
- name: Configure Version
122128
working-directory: firmware
123129
run: |

package.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,26 @@
289289
"name": "thingy_world-${nextRelease.gitTag}-nRF9160DK-low-power.elf",
290290
"label": "App Symbols ELF file for nRF9160 DK firmware (low power)"
291291
},
292+
{
293+
"path": "/home/runner/work/thingy-world-firmware-aws/thingy-world-firmware-aws/nrf9151dk.wifi-*/merged.hex",
294+
"name": "thingy_world-${nextRelease.gitTag}-nRF9151-DK-WiFi.hex",
295+
"label": "App with Bootloader HEX file for nRF9151 DK + nRF7002 EK (low power)"
296+
},
297+
{
298+
"path": "/home/runner/work/thingy-world-firmware-aws/thingy-world-firmware-aws/nrf9151dk.wifi-*/app_signed.hex",
299+
"name": "thingy_world-${nextRelease.gitTag}-nRF9151-DK-WiFi-signed.hex",
300+
"label": "Firmware Update Image HEX file for nRF9151 DK + nRF7002 EK (low power)"
301+
},
302+
{
303+
"path": "/home/runner/work/thingy-world-firmware-aws/thingy-world-firmware-aws/nrf9151dk.wifi-*/app_update.bin",
304+
"name": "thingy_world-${nextRelease.gitTag}-nRF9151-DK-WiFi-app_update.bin",
305+
"label": "Firmware Update Image BIN file for nRF9151 DK + nRF7002 EK (low power)"
306+
},
307+
{
308+
"path": "/home/runner/work/thingy-world-firmware-aws/thingy-world-firmware-aws/nrf9151dk.wifi-*/zephyr.elf",
309+
"name": "thingy_world-${nextRelease.gitTag}-nRF9151-DK-WiFi.elf",
310+
"label": "App Symbols ELF file for nRF9151 DK + nRF7002 EK firmware (low power)"
311+
},
292312
{
293313
"path": "/home/runner/work/thingy-world-firmware-aws/thingy-world-firmware-aws/thingy91x.low-power.wifi-*/merged.hex",
294314
"name": "thingy_world-${nextRelease.gitTag}-Thingy91X-low-power.wifi.hex",

0 commit comments

Comments
 (0)