18 lines
257 B
C
18 lines
257 B
C
/*
|
|
* inputs.h
|
|
*
|
|
* Created on: Oct 29, 2022
|
|
* Author: mcfly
|
|
*/
|
|
|
|
#ifndef INC_INPUTS_H_
|
|
#define INC_INPUTS_H_
|
|
|
|
|
|
#include "stm32g0xx_hal.h"
|
|
|
|
//Timers interrupts
|
|
void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim);
|
|
|
|
#endif /* INC_INPUTS_H_ */
|