21 lines
391 B
C
21 lines
391 B
C
|
|
/*
|
|||
|
|
* pwm_interrupts.h
|
|||
|
|
*
|
|||
|
|
* Created on: 21 <EFBFBD><EFBFBD><EFBFBD>. 2023 <EFBFBD>.
|
|||
|
|
* Author: seklyuts
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#ifndef SRC_PWM_INTERRUPTS_H_
|
|||
|
|
#define SRC_PWM_INTERRUPTS_H_
|
|||
|
|
|
|||
|
|
|
|||
|
|
__interrupt void epwm1_isr(void);
|
|||
|
|
__interrupt void epwm2_isr(void);
|
|||
|
|
__interrupt void epwm3_isr(void);
|
|||
|
|
__interrupt void epwm4_isr(void);
|
|||
|
|
__interrupt void epwm5_isr(void);
|
|||
|
|
__interrupt void epwm6_isr(void);
|
|||
|
|
|
|||
|
|
|
|||
|
|
#endif /* SRC_PWM_INTERRUPTS_H_ */
|