MQX4.1 definition of _nio_dev_uninstall()?

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

MQX4.1 definition of _nio_dev_uninstall()?

跳至解决方案
552 次查看
huishao2
Contributor IV

In MQX4.1 mfs\source\generic\part_mgr.c, function below calls _nio_dev_uninstall() but IAR Linker complaints about "no definition for "_io_part_mgr_uninstall".

int32_t _io_part_mgr_uninstall

    (

    char          *identifier    /*[IN] The identifier string of the device */

    )

{

    return _nio_dev_uninstall(identifier);

}

I can't find the definition for _nio_dev_uninstall() from MQX4.1. In MQX3.8, it was _io_dev_uninstall(). Can anyone help on the definition of this function?

thanks!

Hui

0 项奖励
回复
1 解答
472 次查看
RadekS
NXP Employee
NXP Employee

Thank you for your bug report.

Yes, it is known bug and it was already fixed at development branch.

Correct line is:

return _io_dev_uninstall(identifier);


Have a great day,
RadekS

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

在原帖中查看解决方案

0 项奖励
回复
1 回复
473 次查看
RadekS
NXP Employee
NXP Employee

Thank you for your bug report.

Yes, it is known bug and it was already fixed at development branch.

Correct line is:

return _io_dev_uninstall(identifier);


Have a great day,
RadekS

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

0 项奖励
回复