Skip to content

Commit 56bd96c

Browse files
committed
boards: Thingy91, fixes
Add board files for thingy91. Build thingy91 nightly. Revert client id selection on nrf9160dk. Signed-off-by: Jorgen Kvalvaag <jorgen.kvalvaag@nordicsemi.no>
1 parent 798de9e commit 56bd96c

5 files changed

Lines changed: 64 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,15 @@ jobs:
121121
version: ${{ env.VERSION }}
122122
path: asset-tracker-template/app
123123

124+
- name: Build (old) thingy91 firmware
125+
if: ${{ github.event_name != 'pull_request' }}
126+
uses: ./asset-tracker-template/.github/actions/build-step
127+
with:
128+
board: thingy91/nrf9160/ns
129+
short_board: thingy91
130+
version: ${{ env.VERSION }}
131+
path: asset-tracker-template/app
132+
124133
- name: Build nrf9151dk firmware
125134
if: ${{ github.event_name != 'pull_request' }}
126135
uses: ./asset-tracker-template/.github/actions/build-step

app/boards/nrf9160dk_nrf9160_ns.conf

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,3 @@ CONFIG_PM_OVERRIDE_EXTERNAL_DRIVER_CHECK=y
1313
# Location priority order
1414
CONFIG_LOCATION_REQUEST_DEFAULT_METHOD_FIRST_GNSS=y
1515
CONFIG_LOCATION_REQUEST_DEFAULT_METHOD_SECOND_CELLULAR=y
16-
17-
# Use IMEI as ID
18-
CONFIG_NRF_CLOUD_CLIENT_ID_SRC_IMEI=y
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#
2+
# Copyright (c) 2025 Nordic Semiconductor ASA
3+
#
4+
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
#
6+
7+
# Environmental module
8+
9+
CONFIG_SENSOR=y
10+
CONFIG_BME680=y
11+
CONFIG_APP_ENVIRONMENTAL=y
12+
CONFIG_APP_ENVIRONMENTAL_LOG_LEVEL_DBG=y
13+
14+
# Full modem fota not supported, lacks external flash
15+
CONFIG_NRF_CLOUD_FOTA_FULL_MODEM_UPDATE=n
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
/*
2+
* Copyright (c) 2025 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
*/
6+
7+
/ {
8+
aliases {
9+
temp-sensor = &bme680;
10+
humidity-sensor = &bme680;
11+
pressure-sensor = &bme680;
12+
iaq-sensor = &bme680;
13+
accelerometer = &adxl362;
14+
impact-sensor = &adxl372;
15+
};
16+
};
17+
18+
&i2c2 {
19+
bme680: bme680@76 {};
20+
};
21+
22+
&spi3 {
23+
adxl362: adxl362@0 {
24+
autosleep;
25+
};
26+
27+
adxl372: adxl372@1 {
28+
odr = <4>;
29+
bw = <4>;
30+
hpf = <0>;
31+
};
32+
};
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#
2+
# Copyright (c) 2025 Nordic Semiconductor ASA
3+
#
4+
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
#
6+
7+
8+
CONFIG_FPROTECT=n

0 commit comments

Comments
 (0)