Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
e4699cc
README: add python ecdsa package
szczys Jan 6, 2025
42a86fc
update Golioth Firmware SDK to v0.17.0
szczys Jan 23, 2025
502b01c
release template_v2.6.0
szczys Jan 23, 2025
d399616
editorconfig: add markdown rules
szczys Feb 4, 2025
d81fb10
README: move from ReStructured Text to Markdown
szczys Feb 4, 2025
0d5e170
README: overhaul for uniformity
szczys Feb 4, 2025
307e809
README: fix typo `but`->`by`
szczys Feb 24, 2025
b4075bd
socs: add socs folder to manage configuration by common SoC
szczys Mar 10, 2025
da1751c
use more general CONFIG_SOC_SERIES_NRF91X over CONFIG_SOC_NRF9160
szczys Mar 10, 2025
49205df
battery monitor: move voltage-divider function to separate file
szczys Mar 11, 2025
1387aab
battery monitor: add support for MAX17262 fuel gauge
szczys Mar 11, 2025
6b12af2
battery monitor: convert battery monitor to zephyr module
szczys Mar 11, 2025
3717c57
readme: update Golioth Features section
szczys Mar 12, 2025
67d46d0
deprecate the Aludel-Mini
szczys Mar 12, 2025
9cedfc9
led: better check for LED presence
szczys Mar 12, 2025
c5464ef
handle Nordic-specific config/code
szczys Mar 12, 2025
3c17360
fix formatting using clang-format
szczys Mar 12, 2025
8f56fa8
update Golioth Firmware SDK to v0.18.0
szczys May 8, 2025
77feae5
release v2.7.0
szczys May 8, 2025
8f9f46d
manifest: remove whitespace in project name
szczys May 12, 2025
d59355c
release template_v2.7.1
szczys May 12, 2025
2024fdf
west: update manifest version to 1.0
szczys May 12, 2025
f1f617a
bump Golioth Firmware SDK to v0.18.1
szczys Jun 3, 2025
d48f899
release v2.7.2
szczys Jun 3, 2025
d6584a3
manifest: update golioth-zephyr-boards to v2.0.2
szczys Jun 6, 2025
ea38d5b
battery-monitor: use pct in place of lvl
szczys Jun 6, 2025
463e7db
bump Golioth Firmware SDK to v0.21.0
szczys Oct 10, 2025
69e5be8
west: bump golioth-zephyr-boards to v2.1.1
szczys Oct 10, 2025
097306c
release v2.8.0
szczys Oct 10, 2025
324944a
Merge tag 'template_v2.8.0' into merge/template_v2.8.0
szczys Oct 15, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ images](https://github.com/golioth/golioth-openthread-demo/releases).

- Nordic nRF52840-DK
- Adafruit Feather nRF52840 Express

### Additional Sensors/Components

- A running Thread Border Router with NAT64 translation (we will be
Expand All @@ -49,8 +50,8 @@ This app implements:

### Settings Service

The following settings should be set in the Device Settings menu of the
[Golioth Console](https://console.golioth.io).
The following settings should be set in [the Device Settings menu of the
Golioth Console](https://console.golioth.io/device-settings).

- `LOOP_DELAY_S`
Adjusts the delay between sensor readings. Set to an integer value
Expand All @@ -60,8 +61,8 @@ The following settings should be set in the Device Settings menu of the

### Remote Procedure Call (RPC) Service

The following RPCs can be initiated in the Remote Procedure Call menu of
the [Golioth Console](https://console.golioth.io).
The following RPCs can be initiated in the Remote Procedure Call tab of
each device in the [Golioth Console](https://console.golioth.io).

- `reboot`
Reboot the system.
Expand Down
4 changes: 3 additions & 1 deletion prj.conf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ CONFIG_REBOOT=y
# The rest of the runtime credentials config
CONFIG_SETTINGS=y
CONFIG_SETTINGS_RUNTIME=y
CONFIG_GOLIOTH_SAMPLE_SETTINGS=y
CONFIG_GOLIOTH_SAMPLE_SETTINGS_AUTOLOAD=y
CONFIG_GOLIOTH_SAMPLE_SETTINGS_SHELL=y

Expand All @@ -45,6 +44,8 @@ CONFIG_MBEDTLS_HEAP_SIZE=10240
CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN=2048
CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN=2048
CONFIG_NET_IPV4=y
CONFIG_COAP_EXTENDED_OPTIONS_LEN=y
CONFIG_COAP_EXTENDED_OPTIONS_LEN_VALUE=39

# TLS configuration
CONFIG_MBEDTLS=y
Expand All @@ -62,6 +63,7 @@ CONFIG_NET_SOCKETS_SOCKOPT_TLS=y

# Misc.
CONFIG_JSON_LIBRARY=y

# Longer response length needed for network info
CONFIG_GOLIOTH_RPC_MAX_RESPONSE_LEN=512

Expand Down
3 changes: 1 addition & 2 deletions src/app_rpc.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,7 @@ static enum golioth_rpc_status on_set_log_level(zcbor_state_t *request_params_ar
}

static enum golioth_rpc_status on_reboot(zcbor_state_t *request_params_array,
zcbor_state_t *response_detail_map,
void *callback_arg)
zcbor_state_t *response_detail_map, void *callback_arg)
{
/* Use work queue so this RPC can return confirmation to Golioth */
k_work_submit(&reboot_work);
Expand Down
Loading