Implement a secure ICS protocol targeting LoRa Node151 microcontroller for controlling irrigation.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

63 linhas
1.2 KiB

  1. /*!
  2. * \file sysIrqHandlers.h
  3. *
  4. * \brief Default IRQ handlers
  5. *
  6. * \copyright Revised BSD License, see section \ref LICENSE.
  7. *
  8. * \code
  9. * ______ _
  10. * / _____) _ | |
  11. * ( (____ _____ ____ _| |_ _____ ____| |__
  12. * \____ \| ___ | (_ _) ___ |/ ___) _ \
  13. * _____) ) ____| | | || |_| ____( (___| | | |
  14. * (______/|_____)_|_|_| \__)_____)\____)_| |_|
  15. * (C)2013-2020 Semtech
  16. *
  17. * \endcode
  18. */
  19. #ifndef SYS_IRQ_HANDLERS_H
  20. #define SYS_IRQ_HANDLERS_H
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. void NMI_Handler( void );
  25. void HardFault_Handler( void );
  26. void MemManage_Handler( void );
  27. void BusFault_Handler( void );
  28. void UsageFault_Handler( void );
  29. void DebugMon_Handler( void );
  30. void SysTick_Handler( void );
  31. void EXTI0_IRQHandler( void );
  32. void EXTI1_IRQHandler( void );
  33. void EXTI2_IRQHandler( void );
  34. void EXTI3_IRQHandler( void );
  35. void EXTI4_IRQHandler( void );
  36. void EXTI9_5_IRQHandler( void );
  37. void EXTI15_10_IRQHandler( void );
  38. void RTC_Alarm_IRQHandler( void );
  39. void USART2_IRQHandler( void );
  40. #ifdef __cplusplus
  41. }
  42. #endif
  43. #endif // SYS_IRQ_HANDLERS_H