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

23
utils/med.h Normal file
View File

@ -0,0 +1,23 @@
#pragma once
struct MED_Data16
{
short Size, Index;
short *Buf, *Temp;
};
struct MED_Data32
{
long Size, Index;
long *Buf, *Temp;
};
struct MED_DataF32
{
long Size, Index;
float *Buf, *Temp;
};
long MED_Update(long Value, MED_Data16& Data);
long MED_Update(long Value, MED_Data32& Data);
float MED_Update(float Value, MED_DataF32& Data);