MQX4.1 definition of _nio_dev_uninstall()?

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

MQX4.1 definition of _nio_dev_uninstall()?

Jump to solution
417 Views
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 Kudos
1 Solution
337 Views
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!
-----------------------------------------------------------------------------------------------------------------------

View solution in original post

0 Kudos
1 Reply
338 Views
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 Kudos