MQX4.1 definition of _nio_dev_uninstall()?

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

MQX4.1 definition of _nio_dev_uninstall()?

ソリューションへジャンプ
894件の閲覧回数
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 解決策
814件の閲覧回数
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 返信
815件の閲覧回数
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 件の賞賛
返信