IR_CMD_Handler

This commit is contained in:
2024-08-25 20:27:17 +03:00
parent 55e8424f78
commit 148d748c20
17 changed files with 853 additions and 469 deletions

12
Core/Src/SimpleTimer.c Normal file
View File

@ -0,0 +1,12 @@
/*
* SimpleTimer.c
*
* Created on: Aug 25, 2024
* Author: DashyFox
*/
#include "SimpleTimer.h"
uint32_t millis(){
return HAL_GetTick()*10;
}