Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ CONFIG_I2C=y

# Pmic LED driver
CONFIG_LED=y
CONFIG_LED_NPM1300=y
CONFIG_LED_NPM13XX=y
4 changes: 2 additions & 2 deletions apps/siot-nrf-simple/prj.conf
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ CONFIG_NET_TCP=y

# net shell
CONFIG_SHELL=y
CONFIG_MODEM_SHELL=y
CONFIG_AT_SHELL=y
CONFIG_NET_SHELL=y

# LTE link control
CONFIG_LTE_LINK_CONTROL=y
CONFIG_LTE_NETWORK_MODE_LTE_M_GPS=y

# PSM enablez
# PSM enablez (LTE_LC_PSM_MODULE gates the PSM submodule in NCS v3.x)
CONFIG_LTE_LC_PSM_MODULE=y
CONFIG_LTE_PSM_REQ=y
CONFIG_LTE_PSM_REQ_RPTAU="00100110" # 6 hour
CONFIG_LTE_PSM_REQ_RAT="00000011" # 6 sec active time
Expand Down
10 changes: 2 additions & 8 deletions apps/siot-nrf-simple/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,8 @@ int main(void)
return err;
}

/* Init lte_lc*/
err = lte_lc_init();
if (err < 0) {
LOG_ERR("Failed to init. Err: %i", err);
return err;
}

/* Power saving is turned on */
/* Power saving is turned on (lte_lc_init was removed in NCS v3.x —
* lte_lc_connect now performs initialization internally). */
lte_lc_psm_req(true);

/* Connect */
Expand Down
2 changes: 1 addition & 1 deletion west-nrf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ manifest:
projects:
- name: nfed
url: https://github.com/circuitdojo/nrf9160-feather-examples-and-drivers
revision: v2.7.x
revision: v3.2.x
import: true
- name: west-debug-tools
revision: main
Expand Down