forked from Elron_dev/elbear_arduino_bsp
72 lines
1.8 KiB
C
72 lines
1.8 KiB
C
#include "mik32_hal_irq.h"
|
|
#include "wiring_LL.h"
|
|
|
|
// isr functions
|
|
extern void serial_interrupt_handler(uint8_t uartNumInt);
|
|
extern void gpio_interrupt_handler(void);
|
|
extern void tone_interrupt_handler(void);
|
|
void __attribute__((weak)) wire_interrupt_handler(void)
|
|
{
|
|
// dummy function for case when wire library is not in use
|
|
}
|
|
void __attribute__((weak)) servo_interrupt_handler(void)
|
|
{
|
|
// dummy function for case when servo library is not in use
|
|
}
|
|
|
|
void __attribute__((weak)) ISR(void)
|
|
{
|
|
/*
|
|
A dummy function for the case when additional interrupts are not used in the project.
|
|
In the project, you need to create a function of the form:
|
|
extern "C" void ISR()
|
|
{
|
|
// timer16 is taken as an example
|
|
if (TIM16_GET_ARRM_INT_STATUS(htimer16_1_))
|
|
{
|
|
// necessary actions
|
|
}
|
|
// reset timer interrupt flags
|
|
TIM16_CLEAR_INT_MASK(htimer16_1_, 0xFFFFFFFF);
|
|
}
|
|
libraries required to use this example:
|
|
#include "mik32_hal_timer16.h"
|
|
#include "mik32_hal_irq.h"
|
|
#include "wiring_LL.h"
|
|
*/
|
|
}
|
|
|
|
// ---------------------------------------------- //
|
|
void __attribute__((noinline, section(".ram_text"), optimize("O3"))) trap_handler (void)
|
|
{
|
|
// custom interrupt
|
|
ISR();
|
|
|
|
// gpio interrupt
|
|
if (EPIC_CHECK_GPIO_IRQ())
|
|
gpio_interrupt_handler();
|
|
|
|
// tone timer interrupt
|
|
if (EPIC_CHECK_TIMER16_1())
|
|
tone_interrupt_handler();
|
|
|
|
// servo timer interrupt
|
|
if (EPIC_CHECK_TIMER16_2())
|
|
servo_interrupt_handler();
|
|
|
|
// uart0 interrupt
|
|
if (EPIC_CHECK_UART_0())
|
|
serial_interrupt_handler(0);
|
|
|
|
// uart1 interrupt
|
|
if (EPIC_CHECK_UART_1())
|
|
serial_interrupt_handler(1);
|
|
|
|
// i2c interrupt
|
|
if (EPIC_CHECK_I2C_1())
|
|
wire_interrupt_handler();
|
|
|
|
// reset all interrupts
|
|
EPIC_CLEAR_ALL();
|
|
}
|