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