This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

modem_info_short_get fails

Same as Case ID: 234629  .

Calling modem_info_short_get for the parameters MODEM_INFO_MCC and MODEM_INFO_MNC fail.

I suspect the problem is in code. Tracing the MCC call shows that the call makes the correct AT query to the modem. However, the parameter returned is (rightly) a string. However the value expected for that parameter is a short so the call fails. Trying to call modem_info_string_get fails because the value is typed as a short in the parameter array.

This new ticket is to confirm that it fails on NCS 1.1.0 with modem firmware 1.1.0.

  • Hello, 

    Can you please provide information on what fails? How are you calling the function? What error message are you getting? I will need more information to find the root cause. 

    Thanks! 

    Kind regards,
    Øyvind


  • modem_info_short_get(MODEM_INFO_MCC, &mcc) returns -EINVAL.

    We have already told you what the root cause is. MODEM_INFO_MCC expects a short but the modem returns a string.

    If you write a unit test you can easily reproduce the issue.

  • Andrea said:
    We have already told you what the root cause is. MODEM_INFO_MCC expects a short but the modem returns a string.

    I'm sorry, you copied the text from the related case which was caused by the customer trying to use features in the master branch on git tag v1.0.0. There was also no information regarding what error returned. I need more information to pass to our dev team if they are to fix the issue.

    Can you please tell me how you implement this call in your code? Is it based on an available example?

  • First line of my reply. I've just called the function and it returned EINVAL.

    I have worked around the issue by implementing the AT response parser myself.

  • Listen, you are probably correct, but you aren't giving me much to work with here. 

    From modem_info.h

    /** @brief Request the current modem status of any predefined
     *         information value as a short.
     *
     * If the data parameter returned by the modem is originally a
     * string, this function fails.
     *
     * @param info The requested information type.
     * @param buf  The short where to store the information.
     *
     * @return Length of received data if the operation was successful.
     *         Otherwise, a (negative) error code is returned.
     */
    int modem_info_short_get(enum modem_info info, u16_t *buf);

    From modem_info.c

    int modem_info_short_get(enum modem_info info, u16_t *buf)
    {
    	int err;
    	char recv_buf[CONFIG_MODEM_INFO_BUFFER_SIZE] = {0};
    	int cmd_length = 0;
    
    	if (buf == NULL) {
    		return -EINVAL;
    	}
    
    	if (modem_data[info]->data_type == AT_PARAM_TYPE_STRING) {
    		return -EINVAL;
    	}
    
    	err = at_cmd_write(modem_data[info]->cmd,
    			   recv_buf,
    			   CONFIG_MODEM_INFO_BUFFER_SIZE,
    			   NULL);
    
    	if (err != 0) {
    		return -EIO;
    	}
    
    	err = modem_info_parse(modem_data[info], &recv_buf[cmd_length]);
    
    	if (err) {
    		return err;
    	}
    
    	err = at_params_short_get(&m_param_list,
    				  modem_data[info]->param_index,
    				  buf);
    
    	if (err) {
    		return err;
    	}
    
    	return sizeof(u16_t);
    }
    

    There are two if statements that return -EINVAL

    Have your verified that your data_type == AT_PARAM_TYPE_NUM_SHORT?

Related