コード例 #1
0
ファイル: app_timer.cpp プロジェクト: ElAbbassi/mbed
/**@brief Function for handling the SWI0 interrupt.
 *
 * @details Performs all updates to the timer list.
 */
extern "C" void SWI0_IRQHandler(void)
{
    timer_list_handler();
}
コード例 #2
0
/**@brief Function for handling the SWI interrupt.
 *
 * @details Performs all updates to the timer list.
 */
void SWI_IRQHandler(void)
{
    timer_list_handler();
}
コード例 #3
0
ファイル: app_timer.c プロジェクト: qqzg/aladdin
/**@brief Function for handling the SWI0 interrupt.
 *
 * @details Performs all updates to the timer list.
 */
void SWI0_IRQHandler(void)
{
	rbc_mesh_SWI0_IRQHandler();
    timer_list_handler();
}