/*!
 * @brief Implementation of TSI0 handler named in startup code.
 *
 * Passes instance to generic TSI IRQ handler.
 */
void TSI0_IRQHandler(void)
{
    TSI_DRV_IRQHandler(0);
}
Example #2
0
File: tsi1.c Project: miltonid/KSDK
/*! TSI IRQ handler */
void tsi1_IRQHandler(void)
{
  TSI_DRV_IRQHandler(tsi1_IDX);
}