Hi,
1.How can I use this function?
static int at_monitor_sys_init(const struct device *unused)
{
int err;
err = nrf_modem_at_notif_handler_set(at_monitor_dispatch);
if (err) {
LOG_ERR("Failed to hook the dispatch function, err %d", err);
}
return 0;
}
/* Initialize during SYS_INIT */
SYS_INIT(at_monitor_sys_init, APPLICATION, 0);
2.Can you provide a simple example
3.I have the following information, but I still don't know how to use it.
Thank you for all your assistance.
Kind regards,
Peter.Min