Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

samples: cellular: modem_shell: Fix printing of PDN events #21064

Merged
merged 1 commit into from
Mar 24, 2025
Merged
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
31 changes: 21 additions & 10 deletions samples/cellular/modem_shell/src/link/link_shell_pdn.c
Original file line number Diff line number Diff line change
@@ -33,24 +33,35 @@ struct link_shell_pdn_info {
uint8_t cid;
};

static const char *const event_str[] = {
[PDN_EVENT_CNEC_ESM] = "ESM",
[PDN_EVENT_ACTIVATED] = "activated",
[PDN_EVENT_DEACTIVATED] = "deactivated",
[PDN_EVENT_IPV6_UP] = "IPv6 up",
[PDN_EVENT_IPV6_DOWN] = "IPv6 down",
[PDN_EVENT_NETWORK_DETACH] = "network detach",
[PDN_EVENT_CTX_DESTROYED] = "context destroyed",
};
const char *link_pdn_event_to_string(enum pdn_event event, char *out_str_buf)
{
struct mapping_tbl_item const mapping_table[] = {
/* PDN_EVENT_CNEC_ESM is handled separately */
{ PDN_EVENT_ACTIVATED, "activated" },
{ PDN_EVENT_DEACTIVATED, "deactivated" },
{ PDN_EVENT_IPV6_UP, "IPv6 up" },
{ PDN_EVENT_IPV6_DOWN, "IPv6 down" },
{ PDN_EVENT_NETWORK_DETACH, "network detach" },
{ PDN_EVENT_APN_RATE_CONTROL_ON, "APN rate control on" },
{ PDN_EVENT_APN_RATE_CONTROL_OFF, "APN rate control off" },
{ PDN_EVENT_CTX_DESTROYED, "context destroyed" },
{ -1, NULL }
};

return link_shell_map_to_string(mapping_table, event, out_str_buf);
}

void link_pdn_event_handler(uint8_t cid, enum pdn_event event, int reason)
{
char str_buf[32];

switch (event) {
case PDN_EVENT_CNEC_ESM:
mosh_print("PDN event: PDP context %d, %s", cid, pdn_esm_strerror(reason));
break;
default:
mosh_print("PDN event: PDP context %d %s", cid, event_str[event]);
mosh_print("PDN event: PDP context %d %s", cid,
link_pdn_event_to_string(event, str_buf));
if (cid == 0) {
#if defined(CONFIG_MOSH_STARTUP_CMDS)
if (event == PDN_EVENT_ACTIVATED) {