Implement a secure ICS protocol targeting LoRa Node151 microcontroller for controlling irrigation.
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.
|
- /*!
- * \file sysIrqHandlers.h
- *
- * \brief Default IRQ handlers
- *
- * \copyright Revised BSD License, see section \ref LICENSE.
- *
- * \code
- * ______ _
- * / _____) _ | |
- * ( (____ _____ ____ _| |_ _____ ____| |__
- * \____ \| ___ | (_ _) ___ |/ ___) _ \
- * _____) ) ____| | | || |_| ____( (___| | | |
- * (______/|_____)_|_|_| \__)_____)\____)_| |_|
- * (C)2013-2020 Semtech
- *
- * \endcode
- */
- #ifndef SYS_IRQ_HANDLERS_H
- #define SYS_IRQ_HANDLERS_H
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- void NMI_Handler( void );
-
- void HardFault_Handler( void );
-
- void MemManage_Handler( void );
-
- void BusFault_Handler( void );
-
- void UsageFault_Handler( void );
-
- void DebugMon_Handler( void );
-
- void SysTick_Handler( void );
-
- void EXTI0_IRQHandler( void );
-
- void EXTI1_IRQHandler( void );
-
- void EXTI2_IRQHandler( void );
-
- void EXTI3_IRQHandler( void );
-
- void EXTI4_IRQHandler( void );
-
- void EXTI9_5_IRQHandler( void );
-
- void EXTI15_10_IRQHandler( void );
-
- void RTC_Alarm_IRQHandler( void );
-
- void USART2_IRQHandler( void );
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif // SYS_IRQ_HANDLERS_H
|