File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -13,6 +13,3 @@ CONFIG_PM_OVERRIDE_EXTERNAL_DRIVER_CHECK=y
1313# Location priority order
1414CONFIG_LOCATION_REQUEST_DEFAULT_METHOD_FIRST_GNSS=y
1515CONFIG_LOCATION_REQUEST_DEFAULT_METHOD_SECOND_CELLULAR=y
16-
17- # Use IMEI as ID
18- CONFIG_NRF_CLOUD_CLIENT_ID_SRC_IMEI=y
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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+ };
Original file line number Diff line number Diff line change 1+ #
2+ # Copyright (c) 2025 Nordic Semiconductor ASA
3+ #
4+ # SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+ #
6+
7+
8+ CONFIG_FPROTECT=n
You can’t perform that action at this time.
0 commit comments