I Want store AT command (AT%NCELLMEAS ) response as %NCELLMEAS: 0,"00313892","405861","C019",65535,2509,167,48,15,109947,2509,182,48,15,0,2415,279,38, but below code reponse is storing only OK in my buffer that to after som

void resp_callback(const char *at_response);
void foo(void);

void resp_callback(const char *at_response)
{

        printk("AT response received:\n%s", at_response);
     

}

void foo(void)
{
        int err;

        err = nrf_modem_at_cmd_async(resp_callback, "AT%NCELLMEAS", 1);
        if (err)
         {
            printf("error reading cmsd\n") ;  
           
        }
}
here i need to store this response in my buffer : %NCELLMEAS: 0,"00313892","405861","C019",65535,2509,167,48,15,109947,2509,182,48,15,0,2415,279,38,-1,80,2417,466,56,18,117,2417,439,53,13,117,0 , instead of ok , how ,please help to store that response instead of ok .
Parents
  • MCC, MNC, LAC, and Cell ID how to find these values using AT commands to track cell id , i think AT%NCELLMEAS COMMAND HELP US but data we need to convert ha , tell me what to do get above 4 datas in below is my output , %NCELLMEAS: 0,"00004392","405861","C00C",64,2509,332,46,23,81908,2509,266,31,-6,0,2415,456,41,25,64,2415,180,31,4,64,2417,310,36,15,130,2417,487,32,8,130,2417,199,30,2,130,16368 (this data i recevied using that at command )   after entering those values its showing cell not found, help to get to track location

Reply
  • MCC, MNC, LAC, and Cell ID how to find these values using AT commands to track cell id , i think AT%NCELLMEAS COMMAND HELP US but data we need to convert ha , tell me what to do get above 4 datas in below is my output , %NCELLMEAS: 0,"00004392","405861","C00C",64,2509,332,46,23,81908,2509,266,31,-6,0,2415,456,41,25,64,2415,180,31,4,64,2417,310,36,15,130,2417,487,32,8,130,2417,199,30,2,130,16368 (this data i recevied using that at command )   after entering those values its showing cell not found, help to get to track location

Children
No Data
Related