Skip to content

Commit b6fd95c

Browse files
committed
Merge tag 'template_v2.8.0' into merge/template_v2.8.0
release template_v2.8.0
2 parents 1ded30c + 097306c commit b6fd95c

File tree

6 files changed

+16
-11
lines changed

6 files changed

+16
-11
lines changed

prj.conf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ CONFIG_REBOOT=y
4545
# The rest of the runtime credentials config
4646
CONFIG_SETTINGS=y
4747
CONFIG_SETTINGS_RUNTIME=y
48-
CONFIG_GOLIOTH_SAMPLE_SETTINGS=y
4948
CONFIG_GOLIOTH_SAMPLE_SETTINGS_AUTOLOAD=y
5049
CONFIG_GOLIOTH_SAMPLE_SETTINGS_SHELL=y
5150

socs/nrf9160_ns.conf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2048
2929
# Disable options y-selected by NCS for no good reason
3030
CONFIG_MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED=n
3131
CONFIG_MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED=n
32+
CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED=n
3233

3334
# MbedTLS configuration to support p-384 curve. These options
3435
# enable using the MbedTLS built-in support for operations not

src/app_sensors.c

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,14 @@ void app_sensors_read_and_stream(void)
148148
IF_ENABLED(CONFIG_ALUDEL_BATTERY_MONITOR, (
149149
read_and_report_battery(client);
150150
IF_ENABLED(CONFIG_LIB_OSTENTUS, (
151-
ostentus_slide_set(o_dev, BATTERY_V, get_batt_v_str(), strlen(get_batt_v_str()));
152-
ostentus_slide_set(o_dev, BATTERY_LVL, get_batt_lvl_str(),
153-
strlen(get_batt_lvl_str()));
151+
ostentus_slide_set(o_dev,
152+
BATTERY_V,
153+
get_batt_v_str(),
154+
strlen(get_batt_v_str()));
155+
ostentus_slide_set(o_dev,
156+
BATTERY_PCT,
157+
get_batt_pct_str(),
158+
strlen(get_batt_pct_str()));
154159
));
155160
));
156161

src/app_sensors.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ typedef enum {
7070
X_ACC_RMS_HF,
7171
#ifdef CONFIG_ALUDEL_BATTERY_MONITOR
7272
BATTERY_V,
73-
BATTERY_LVL,
73+
BATTERY_PCT,
7474
#endif
7575
FIRMWARE
7676
} slide_key;

src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ int main(void)
284284
LABEL_BATTERY,
285285
strlen(LABEL_BATTERY));
286286
ostentus_slide_add(o_dev,
287-
BATTERY_LVL,
287+
BATTERY_PCT,
288288
LABEL_BATTERY,
289289
strlen(LABEL_BATTERY));
290290
));

west.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
manifest:
5-
version: 0.8
5+
version: 1.0
66

77
projects:
88
- name: golioth
99
path: modules/lib/golioth-firmware-sdk
10-
revision: v0.18.0
10+
revision: v0.21.0
1111
url: https://github.com/golioth/golioth-firmware-sdk.git
1212
west-commands: scripts/west-commands.yml
1313
submodules: true
@@ -17,7 +17,7 @@ manifest:
1717
name-allowlist:
1818
- nrf
1919
- zephyr
20-
- cmsis
20+
- cmsis_6
2121
- hal_nordic
2222
- mbedtls
2323
- mbedtls-nrf
@@ -34,7 +34,7 @@ manifest:
3434

3535
- name: golioth-zephyr-boards
3636
path: deps/modules/lib/golioth-boards
37-
revision: v2.0.1
37+
revision: v2.1.1
3838
url: https://github.com/golioth/golioth-zephyr-boards
3939

4040
- name: libostentus
@@ -49,7 +49,7 @@ manifest:
4949

5050
- name: golioth-battery-monitor
5151
path: deps/modules/lib/battery-monitor
52-
revision: v1.0.0
52+
revision: v1.1.0
5353
url: https://github.com/golioth/battery-monitor
5454

5555
self:

0 commit comments

Comments
 (0)