- mtkernel_3
- device/ser/sysdepend/stm32l4/ser_stm32l4.c - 7.2KB - 215 lines
144: ClearInt(INTNO_USART1 + unit);
145: EnableInt(INTNO_USART1 + unit, DEVCNF_SER_INTPRI); // Enable Interrupt
146: start_com( unit, ll_devcb[unit].mode, ll_devcb[unit].speed);
- device/ser/sysdepend/tx03_m367/ser_m367.c - 6.2KB - 190 lines
122: out_w(ba[unit] + UARTxIMSC, UARTxINT_COM); // Unmask all interrupts
123: EnableInt(unit?INTNO_UART1:INTNO_UART0, DEVCNF_SER_INTPRI); // Enable Interrupt
124: start_com( unit, ll_devcb[unit].mode, ll_devcb[unit].speed);
- kernel/sysdepend/cpu/core/armv7a/sys_timer.h - 2.8KB - 95 lines
40:
41: EnableInt(INTNO_SYSTICK, INTPRI_SYSTICK); /* Enable interrupt(INTC level) */
42:
- kernel/sysdepend/cpu/core/rxv2/sys_timer.h - 3.2KB - 109 lines
35: /* CMI0 Interrupt Enable, Interrupt Level is 15. */
36: EnableInt( INTNO_SYS_TICK , INTLEVEL_SYS_TICK);
37:
- lib/libtk/sysdepend/cpu/rx231/ptimer_rx231.c - 6.3KB - 219 lines
112: }
113: EnableInt( p_cb->intno, p_cb->intptr);
114:
- lib/libtk/sysdepend/cpu/rza2m/ptimer_rza2m.c - 4.8KB - 179 lines
106: }
107: EnableInt( intno, ptmrcb[ptmrno].intpri);
108:
- lib/libtk/sysdepend/cpu/stm32l4/ptimer_stm32l4.c - 6.2KB - 201 lines
123: out_h( TIM_DIER(ptmrno), TIMxDIER_UIE); // Enable Update Interrupt.
124: EnableInt( intno, ptmrcb[ptmrno].intpri);
125:
- lib/libtk/sysdepend/cpu/tx03_m367/ptimer_m367.c - 7.5KB - 236 lines
130: }
131: EnableInt( intno, p_cb->intptr);
132: