Новый main

This commit is contained in:
2026-04-16 16:48:40 +03:00
parent 273398ba16
commit a3d845df9e
9 changed files with 604 additions and 1 deletions

14
Source/Drivers/Tim.h Normal file
View File

@@ -0,0 +1,14 @@
#pragma once
#ifndef TIM_H
#define TIM_H
typedef void (*ProcTIM)();
void TIM6_Init(long Priority, unsigned long Freq, const ProcTIM& Proc1, const ProcTIM& Proc2);
void TIM7_Init(long Priority, unsigned long Freq, const ProcTIM& Proc);
void TIM6_Enable();
void TIM7_Enable();
#endif