23 lines
421 B
C
23 lines
421 B
C
/*
|
||
* timers.h
|
||
*
|
||
* Created on: 4 янв. 2026 г.
|
||
* Author: v0stap
|
||
*/
|
||
|
||
#ifndef INC_TIMERS_H_
|
||
#define INC_TIMERS_H_
|
||
#include "main.h"
|
||
|
||
void Timers_Init(void);
|
||
void TIM1_Init(void);
|
||
void TIM2_Init(void);
|
||
void TIM3_Init(void);
|
||
void TIM6_Init(void);
|
||
void TIM7_Init(void);
|
||
void TIM14_Init(void);
|
||
void TIM15_Init(void);
|
||
void TIM16_Init(void);
|
||
void TIM17_Init(void);
|
||
#endif /* INC_TIMERS_H_ */
|