Cleanup of defines for motor protocols (#11993)
[betaflight.git] / src / main / vcp / stm32_it.h
blobf3758882bfdc1877eb6c4615d394eae8702c7a9a
1 /**
2 ******************************************************************************
3 * @file stm32_it.h
4 * @author MCD Application Team
5 * @version V4.0.0
6 * @date 21-January-2013
7 * @brief This file contains the headers of the interrupt handlers.
8 ******************************************************************************
9 * @attention
11 * <h2><center>&copy; COPYRIGHT 2013 STMicroelectronics</center></h2>
13 * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
14 * You may not use this file except in compliance with the License.
15 * You may obtain a copy of the License at:
17 * http://www.st.com/software_license_agreement_liberty_v2
19 * Unless required by applicable law or agreed to in writing, software
20 * distributed under the License is distributed on an "AS IS" BASIS,
21 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22 * See the License for the specific language governing permissions and
23 * limitations under the License.
25 ******************************************************************************
28 /* Define to prevent recursive inclusion -------------------------------------*/
29 #ifndef __STM32_IT_H
30 #define __STM32_IT_H
32 /* Includes ------------------------------------------------------------------*/
33 #include "platform_config.h"
35 /* Exported types ------------------------------------------------------------*/
36 /* Exported constants --------------------------------------------------------*/
37 /* Exported macro ------------------------------------------------------------*/
38 /* Exported functions ------------------------------------------------------- */
40 void NMI_Handler(void);
41 void MemManage_Handler(void);
42 void BusFault_Handler(void);
43 void UsageFault_Handler(void);
44 void SVC_Handler(void);
45 void DebugMon_Handler(void);
46 void PendSV_Handler(void);
47 void SysTick_Handler(void);
48 void USBWakeUp_IRQHandler(void);
49 void USB_FS_WKUP_IRQHandler(void);
51 #endif /* __STM32_IT_H */
53 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/