Karan Raj Pradhan
Karan Raj Pradhan
I'm facing the same issue however. Using branch release/v1.0 with commit hash gd0196da. Using the following components: Bluetooth: BLE GATT server WiFi aws_iot Mesh (esp-mdf) Getting the following crash logs:...
@elangovan27sri The program does not stop. It loads it at boot and runs the instructions from the program you just loaded. If you are trying to go back to the...
Hi @sharmabhimanyu, are you using the A9 with AT commands(on factory firmware) or are you flashing a custom firmware built on top of the GPRS_C_SDK provided by AiThinker? In any...
@zeeshanali33096 @sharmabhimanyu Can you provide the logs of this network drop you mentioned? Also, is the timing of the drop consistent?
@cityba - which code do you mean by "gps-tracker code"?
@cityba We have noticed some issues with GPRS/GSM network disconnecting while running over longer period of time. The approach we took was to catch these network detachment/disconnect event and try...
@cityba Just add the code that captures the events as done [here](https://github.com/IoTReady/a9_gsm_gps_library/blob/main/a9_mqtt_lib/src/mqtt_example.c#L89) - API_EVENT_ID_NETWORK_REGISTER_DENIED - API_EVENT_ID_NETWORK_DETACHED - API_EVENT_ID_NETWORK_ATTACH_FAILED - API_EVENT_ID_NETWORK_DEACTIVED - API_EVENT_ID_NETWORK_ACTIVATE_FAILED And then call the appropriate reattach/reactivate function: https://github.com/IoTReady/a9_gsm_gps_library/blob/main/a9_mqtt_lib/src/mqtt_example.c#L40
Can you send your AttachActivate function?
Please use this: ```` bool AttachActivate() { uint8_t status; bool ret = Network_GetAttachStatus(&status); if(!ret) { Trace(2,"get attach status fail"); return false; } Trace(2,"attach status:%d",status); if(!status) { ret = Network_StartAttach(); if(!ret)...
@louistaannn - Are you using AT commands or a custom firmware for the A9G? We haven't come across such issues with publishing messages due to their message size. The MQTT...