2020-04-13 13:38:56 +00:00
|
|
|
#include "peripherals.h"
|
|
|
|
|
|
|
|
IWDG_HandleTypeDef hiwdg = { .Instance = IWDG };
|
|
|
|
TIM_HandleTypeDef htim2 = { .Instance = TIM2 };
|
|
|
|
SPI_HandleTypeDef hspi2 = { .Instance = SPI2 };
|
2020-04-13 14:46:11 +00:00
|
|
|
|
|
|
|
void TIM2_IRQHandler()
|
|
|
|
{
|
|
|
|
HAL_TIM_IRQHandler(&htim2);
|
|
|
|
}
|