2023-09-14 14:39:29 +03:00
|
|
|
|
/*
|
|
|
|
|
|
* pwm_interrupts.h
|
|
|
|
|
|
*
|
|
|
|
|
|
* Created on: 21 <EFBFBD><EFBFBD><EFBFBD>. 2023 <EFBFBD>.
|
|
|
|
|
|
* Author: seklyuts
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef SRC_PWM_INTERRUPTS_H_
|
|
|
|
|
|
#define SRC_PWM_INTERRUPTS_H_
|
|
|
|
|
|
|
2023-10-12 08:47:43 +03:00
|
|
|
|
|
2023-09-14 14:39:29 +03:00
|
|
|
|
|
|
|
|
|
|
__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);
|
2023-10-12 08:47:43 +03:00
|
|
|
|
__interrupt void epwm11_isr(void);
|
2023-09-20 17:43:56 +03:00
|
|
|
|
void pwm_set_volt_3F(float phaseA, float phaseB, float phaseC);
|
2023-10-12 08:47:43 +03:00
|
|
|
|
void pwm_clr_PwmFlagStartADC(void);
|
2023-09-20 17:43:56 +03:00
|
|
|
|
|
2023-09-14 14:39:29 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* SRC_PWM_INTERRUPTS_H_ */
|