コード例 #1
0
ファイル: interrupt.c プロジェクト: rainbow12/3D_Control
void TIMER1_IRQHandler (void){
	T1IR |= (1<<0);
	dda_clock();
}
コード例 #2
0
ファイル: timer-lpc.c プロジェクト: Traumflug/Teacup_Firmware
/** System clock interrupt, slow part.

  Here we do potentially lengthy calculations. Must have the same name as in
  cmsis-startup_lpc11xx.s
*/
void PendSV_Handler(void) {
  dda_clock();
}