mirror of
https://github.com/IcedRooibos/py32f0-template.git
synced 2025-10-29 08:52:04 -07:00
21 lines
325 B
C
21 lines
325 B
C
#ifndef __PY32F0XX_IT_H
|
|
#define __PY32F0XX_IT_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void NMI_Handler(void);
|
|
void HardFault_Handler(void);
|
|
void SVC_Handler(void);
|
|
void PendSV_Handler(void);
|
|
void SysTick_Handler(void);
|
|
|
|
void TIM1_BRK_UP_TRG_COM_IRQHandler(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __PY32F0XX_IT_H */
|