Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 4 additions & 0 deletions .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,5 +87,9 @@ jobs:
west release-build -r infuse-sdk/samples/releases/serial-nrf9160dk.yaml --skip-git
west release-build -r infuse-sdk/samples/releases/serial-nucleo-l432kc.yaml --skip-git

- name: Cleanup
if: always()
run: |
rm -rf data_logger-tauro*
rm -rf release-sample-gateway*
rm -rf release-sample-serial*
2 changes: 1 addition & 1 deletion doc/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pygments>=2.9,!=2.19.0
sphinx-notfound-page
sphinx-copybutton
sphinx-togglebutton
sphinx-sitemap
sphinx-sitemap==2.6.0
sphinx-autobuild

# YAML validation. Used by zephyr_module.
Expand Down
4 changes: 4 additions & 0 deletions subsys/net/conn_mgr/conn_mgr_wifi_kv_store.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ static void conn_create_worker(struct k_work *work)
params.channel = WIFI_CHANNEL_ANY;
if (kv_store_read(KV_KEY_WIFI_SSID, &wifi_ssid, sizeof(wifi_ssid)) <= 0) {
LOG_WRN("No WiFi SSID");
if (conn_mgr_if_get_timeout(wifi_if) > CONN_MGR_IF_NO_TIMEOUT) {
/* Cancel the timeout worker that was started */
k_work_cancel_delayable(&conn_timeout);
}
return;
}
params.ssid = wifi_ssid.ssid.value;
Expand Down
2 changes: 1 addition & 1 deletion west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ manifest:

projects:
- name: zephyr
revision: 4918bf9963444dc81726636220ed3020d0cc500a
revision: a4559311529e347b1d857b85a47004d7cf86b880
# Limit imported repositories to reduce clone time
import:
name-allowlist:
Expand Down
Loading