Files
@ a675e30661bd
Branch filter:
Location: windsonde/Source/system/interrupts.c - annotation
a675e30661bd
500 B
text/plain
Actual GPS now correctly passed though
0f04af7169be 0f04af7169be 0f04af7169be 0f04af7169be 0f04af7169be 0f04af7169be 0f04af7169be 0f04af7169be 0f04af7169be 0f04af7169be 0f04af7169be 0f04af7169be 0f04af7169be 0f04af7169be 0f04af7169be 0f04af7169be 0f04af7169be 0f04af7169be 0f04af7169be 0f04af7169be 0f04af7169be 0f04af7169be 0f04af7169be 0f04af7169be 0f04af7169be 0f04af7169be 0f04af7169be 0f04af7169be | //
// Interrupts: ISRs for all global interrupts
//
#include <system/gpio.h>
#include <system/stm32f0xx_it.h>
#include "stm32f0xx_hal.h"
#include "stm32f0xx.h"
#include "system/gpio.h"
#include "aprs/afsk.h"
// Systick
void SysTick_Handler(void)
{
HAL_IncTick();
HAL_SYSTICK_IRQHandler();
}
void TIM1_CC_IRQHandler(void)
{
HAL_TIM_IRQHandler(afsk_timer_gethandle());
}
void TIM1_BRK_UP_TRG_COM_IRQHandler(void)
{
HAL_TIM_IRQHandler(afsk_timer_gethandle());
}
|