void main(void){
char date[21];
lte_lc_init_and_connect();
k_sleep(K_MSEC(10));
nrf_modem_at_scanf("AT+CCLK?", "+CCLK: \"%s\"", &date);
printf("%s", date);
nrf_modem_lib_shutdown();
lte_lc_power_off();
}
Hi,
I just go a question about when to use the nrf_moden_lib_shutdown(). Is it necessary to use in this code case? Since I've used lte_lc_power_off().
Regards,
Elias