Exemplo n.º 1
0
/**
  * @brief  This function handles PendSVC exception.
  * @param  None
  * @retval None
  */
void PendSV_Handler(void) {
    pendsv_isr_handler();
}
Exemplo n.º 2
0
/**
  * @brief  This function handles PendSVC exception.
  * @param  None
  * @retval None
  */
void PendSV_Handler(void) {
    extern void pendsv_isr_handler(void);
    pendsv_isr_handler();
}