We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ca722f commit 0287dafCopy full SHA for 0287daf
samples/cellular/modem_shell/src/link/link.c
@@ -180,8 +180,10 @@ static void link_registered_work(struct k_work *unused)
180
/* Activate the deactive ones that have been connected by us */
181
link_api_activate_mosh_contexts(pdn_act_status_arr, PDN_CONTEXTS_MAX);
182
183
- /* Seems that 1st info read fails without this. Thus, let modem have some time */
184
- k_sleep(K_MSEC(1500));
+ /* PDN activation may take some time. Thus, let modem have some time
+ * before reading the PDN information.
185
+ */
186
+ k_sleep(K_MSEC(2000));
187
188
link_api_modem_info_get_for_shell(true);
189
}
0 commit comments