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
2 changes: 1 addition & 1 deletion app/prj.conf
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ CONFIG_APP_NTN_SERVER_PORT=
CONFIG_APP_NTN_LOG_LEVEL_DBG=y
CONFIG_APP_NTN_TIMER_TIMEOUT_MINUTES=15
CONFIG_APP_NTN_BANDLOCK_ENABLE=n
CONFIG_APP_NTN_DISABLE_EPCO=y
CONFIG_LTE_LC_PDN_LEGACY_PCO=y

# Debug
CONFIG_LTE_LINK_CONTROL_LOG_LEVEL_DBG=y
Expand Down
5 changes: 0 additions & 5 deletions app/src/modules/ntn/Kconfig.ntn
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,6 @@ config APP_NTN_CHANNEL_SELECT

endif # APP_NTN_CHANNEL_SELECT_ENABLE

config APP_NTN_DISABLE_EPCO
bool "Disable ePCO"
help
Disable ePCO.

config APP_NTN_SERVER_ADDR
string "NTN server address"
default ""
Expand Down
10 changes: 0 additions & 10 deletions app/src/modules/ntn/ntn.c
Original file line number Diff line number Diff line change
Expand Up @@ -292,16 +292,6 @@ static int set_ntn_active_mode(struct ntn_state_object *state)
return err;
}

#if defined(CONFIG_APP_NTN_DISABLE_EPCO)
/* Set XEPCO off */
err = nrf_modem_at_printf("AT%%XEPCO=0");
if (err) {
LOG_ERR("Failed to set XEPCO off, error: %d", err);

return err;
}
#endif

/* Configure NTN system mode */
err = lte_lc_system_mode_set(LTE_LC_SYSTEM_MODE_NTN_NBIOT,
LTE_LC_SYSTEM_MODE_PREFER_AUTO);
Expand Down
Loading