Part Number:LAUNCHXL-CC1352P
MT_SysResetInd doesn't work in ZNP project of simplelink_zigbee_sdk_plugin_2_20_00_06. After checking source code, I find MT_Init is called before NPITask_inititializeTask and this causes MT_SysResetInd doesn't work. If I move MT_SysResetInd to right after NPITask_inititializeTask is called in NPITask_task. It will work. However, I don't think this is an elegant fix so please TIers have a look on this issues and provide fix.
void NPITask_task(void)
{
// Initialize application
NPITask_inititializeTask();
MT_SysResetInd();
// No return from TestProfile2 process
NPITask_process();
}