Projet voilier 4IRA1 Arnaud Vergnet Marino Benassai Bastien Picco Yohan Simard
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

stm32f1xx_it.h 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /**
  2. ******************************************************************************
  3. * @file Examples_LL/GPIO/GPIO_InfiniteLedToggling/Inc/stm32f1xx_it.h
  4. * @author MCD Application Team
  5. * @brief This file contains the headers of the interrupt handlers.
  6. * !! modif : include main.h enlevé
  7. ******************************************************************************
  8. * @attention
  9. *
  10. * <h2><center>&copy; Copyright (c) 2016 STMicroelectronics.
  11. * All rights reserved.</center></h2>
  12. *
  13. * This software component is licensed by ST under BSD 3-Clause license,
  14. * the "License"; You may not use this file except in compliance with the
  15. * License. You may obtain a copy of the License at:
  16. * opensource.org/licenses/BSD-3-Clause
  17. *
  18. ******************************************************************************
  19. */
  20. /* Define to prevent recursive inclusion -------------------------------------*/
  21. #ifndef __STM32F1xx_IT_H
  22. #define __STM32F1xx_IT_H
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. void NMI_Handler(void);
  27. void HardFault_Handler(void);
  28. void MemManage_Handler(void);
  29. void BusFault_Handler(void);
  30. void UsageFault_Handler(void);
  31. void SVC_Handler(void);
  32. void DebugMon_Handler(void);
  33. void PendSV_Handler(void);
  34. void SysTick_Handler(void);
  35. #ifdef __cplusplus
  36. }
  37. #endif
  38. #endif /* __STM32F1xx_IT_H */
  39. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/