void pend_sv_handler(void)
{
  	xPortPendSVHandler();
}
void PendSV_Handler(void)
{
    xPortPendSVHandler();
}
Exemplo n.º 3
0
/*
** ===================================================================
**     Event       :  Cpu_OnPendableService (module Events)
**
**     Component   :  Cpu [MK70FN1M0MJ15]
**     Description :
**         This event is called when the Pendable Service exception had
**         occurred. This event is automatically enabled when the
**         <Pendable Service> property is set to 'Enabled'.
**     Parameters  : None
**     Returns     : Nothing
** ===================================================================
*/
void Cpu_OnPendableService(void)
{
  xPortPendSVHandler();
}