Новый 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

11
Source/Drivers/Tick.h Normal file
View File

@@ -0,0 +1,11 @@
#pragma once
#ifndef TICK_H
#define TICK_H
void TICK_Init();
unsigned long TICK_GetCount();
float TICK_GetTime();
void TICK_Delay(unsigned long us); // 900 us maximum
#endif