hi,
I had the board run the following code to connect it to the cellular tower:
#include <zephyr.h>
#include <stdio.h>
#include <string.h>
#include <lte_lc.h>
void main(void)
{
int ret = lte_lc_init_and_connect();
if (ret ==0)
printk("lte_lc_init_and_connect() succeeded");
else
printk("lte_lc_init_and_connect() failed");
while(1) {};
}
Every time after reset I always saw it prints "lte_lc_init_and_connect() succeeded". Then I expected it to stay connected forever. Some boards meet my expectation. Some other boards don't, they could reboot themselves some time.
The cellular signal strength is about -80db in my area.
could you please explain why this happens?
Best,
Kai