Files
@ 7ff1c5a59571
Branch filter:
Location: windsonde/Source/system/interrupts.c - annotation
7ff1c5a59571
500 B
text/plain
Working GPS, actual HDOP is now transmitted. Sometimes have to comment out all GPS stuff because it stops working...
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());
}
|