1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef __STM32G0xx_IT_H
- #define __STM32G0xx_IT_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- void NMI_Handler(void);
- void HardFault_Handler(void);
- void SVC_Handler(void);
- void PendSV_Handler(void);
- void ADC1_IRQHandler(void);
- #ifdef __cplusplus
- }
- #endif
- #endif
|