medida
medida
Don;t suppose this would work with the Network_SetFlightMode Once the GSM has been turned off - how can you restart it without knowing the operator ID? Can it just be...
@mnorval - did you get the device to re-register to the network once you had deregistered it???
So i am currently getting info from AI-Thinker. I have found a way to restart the GSM from flightmode without having to reboot the device. I found that if i...
@K1ngM did you get this issue resolved? I'm also unable to get the modem to reconnect once its been turned OFF ( deactivaed - not powered off ) thanks
Have you found a better hardware product. Besides the lack of GSM restarting i have found it quite reliable... This is just such an annoying issue
to get the network to reconnect i have found i need to do the following Network_PDP_Context_t context = { .apn ="somethingwrongtomakeitfail", .userName = "", .userPasswd = "" }; Network_StartActive(context); Network_PDP_Context_t ...
this is the copy of the code i got from AI-Thinker for testing flight mode #include "stdbool.h" #include "stdint.h" #include "stdio.h" #include "string.h" #include "api_os.h" #include "api_debug.h" #include "api_event.h" #include...
Hi @yennhan1211 - my code from above was the only solution i found. Depending upon what you want to do with the device - they are VERY power hungry.
@yennhan1211 i forced the device to try and connect with the WRONG APN details `Network_PDP_Context_t context = { .apn ="cmnet11qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq", // you have something differt here??? .userName = "", .userPasswd...
this looks great. when you were using the I2C from the A9G did you have to send all data i byte at a time or could you send through an...