Skip to content
Draft
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
2 changes: 2 additions & 0 deletions app/prj.conf
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ CONFIG_NRF_CLOUD_LOG_OUTPUT_LEVEL=3
CONFIG_NRF_CLOUD_FOTA_POLL=y
CONFIG_NRF_CLOUD_FOTA_POLL_LOG_LEVEL_DBG=y
CONFIG_NRF_CLOUD_FOTA_FULL_MODEM_UPDATE=y
CONFIG_NRF_CLOUD_FOTA_FULL_MODEM_UPDATE_BUF_SIZE=1024
CONFIG_NRF_CLOUD_FOTA_DOWNLOAD_FRAGMENT_SIZE=1700
CONFIG_NRF_CLOUD_COAP_DOWNLOADS=y
CONFIG_FOTA_DOWNLOAD=y
Expand Down Expand Up @@ -157,6 +158,7 @@ CONFIG_SMF_INITIAL_TRANSITION=y
CONFIG_LOCATION=y
CONFIG_LOCATION_DATA_DETAILS=y
CONFIG_LOCATION_METHOD_GNSS=y
CONFIG_LOCATION_SERVICE_EXTERNAL=y
CONFIG_LOCATION_SERVICE_NRF_CLOUD_GNSS_POS_SEND=y
CONFIG_LOCATION_REQUEST_DEFAULT_GNSS_TIMEOUT=60000
CONFIG_LOCATION_REQUEST_DEFAULT_WIFI_TIMEOUT=10000
Expand Down
10 changes: 0 additions & 10 deletions app/src/modules/network/network.c
Original file line number Diff line number Diff line change
Expand Up @@ -358,16 +358,6 @@ static void network_task(void)

network_status_notify(NETWORK_DISCONNECTED);

if (IS_ENABLED(CONFIG_LTE_LINK_CONTROL)) {
/* Subscribe to modem events */
err = lte_lc_modem_events_enable();
if (err) {
LOG_ERR("lte_lc_modem_events_enable, error: %d", err);
SEND_FATAL_ERROR();
return;
}
}

/* Resend connection status if the sample is built for Native Posix.
* This is necessary because the network interface is automatically brought up
* at SYS_INIT() before main() is called.
Expand Down
2 changes: 1 addition & 1 deletion west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ manifest:
- name: nrf
remote: ncs
repo-path: sdk-nrf
revision: v3.2.0
revision: v3.3.0
import: true
Loading