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 docs/common/tooling_troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ and execute them if any. You can use it to reprovision the device for developmen
uart:~$ att_network disconnect
[00:00:36.758,758] <dbg> network: state_disconnecting_entry: state_disconnecting_entry
[00:00:37.196,746] <wrn> network: Not registered, check rejection cause
[00:00:37.197,021] <dbg> network: l4_event_handler: Network connectivity lost
[00:00:37.197,021] <dbg> network: lte_lc_evt_handler: PDN connection network detached
[00:00:37.198,608] <dbg> cloud: state_connected_paused_entry: state_connected_paused_entry
[00:00:37.198,974] <dbg> main: wait_for_trigger_exit: wait_for_trigger_exit
[00:00:37.199,005] <dbg> main: idle_entry: idle_entry
Expand Down
2 changes: 1 addition & 1 deletion tests/on_target/tests/test_functional/test_fota.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def get_modemversion(dut_fota):

def perform_disconnect_reconnect(dut_fota, expected_percentage):
"""Helper function to perform a disconnect/reconnect sequence and verify resumption at expected percentage"""
patterns_lte_offline = ["network: l4_event_handler: Network connectivity lost"]
patterns_lte_offline = ["network: lte_lc_evt_handler: PDN connection network detached"]
patterns_lte_normal = ["network: l4_event_handler: Network connectivity established"]

logger.info(f"Disconnecting at {expected_percentage}% - device should resume at same percentage")
Expand Down
2 changes: 1 addition & 1 deletion tests/on_target/tests/test_functional/test_shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def test_shell(dut_cloud, hex_file):
'Sending on payload channel: {"messageType":"DATA","appId":"donald","data":"duck"',
]
patterns_network_disconnected = [
"network: l4_event_handler: Network connectivity lost",
"network: lte_lc_evt_handler: PDN connection network detached",
]
patterns_network_connected = [
"network: l4_event_handler: Network connectivity established",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def _wait_for_lte_connection(dut_cloud, timeout: int = 240):
def _disconnect_network_and_clear_modem_credentials(dut_cloud, sec_tag: int):
logger.info("Disconnecting network and clearing modem credentials...")

log_pattern_network_disconnected = "network: l4_event_handler: Network connectivity lost"
log_pattern_network_disconnected = "network: lte_lc_evt_handler: PDN connection network detached"
dut_cloud.uart.write("att_network disconnect\r\n")
dut_cloud.uart.wait_for_str(
log_pattern_network_disconnected,
Expand Down