add firmware

This commit is contained in:
Dana Markova
2025-07-28 12:43:33 +03:00
parent 6cf2747ec9
commit 748830dfb7
84 changed files with 40709 additions and 0 deletions

12
utils/med2.h Normal file
View File

@ -0,0 +1,12 @@
#pragma once
struct MED2_Data
{
unsigned char Size, Last;
unsigned char* Index;
long* Buff;
unsigned char Smooth;
};
void MED2_Init(MED2_Data& Data);
long MED2_Update(long Value, MED2_Data& Data);