Реализован уровень обработки данных драйвера IMU

This commit is contained in:
2026-04-14 17:36:05 +03:00
parent d59cf7cd55
commit 52922afeb1
10 changed files with 466 additions and 0 deletions

10
Source/MathEnv/MathFunc.h Normal file
View File

@@ -0,0 +1,10 @@
#pragma once
#ifndef MATHFUNC_H
#define MATHFUNC_H
float Normalize(float Value, float Scale, float Min, float Max);
short Rev16(short v);
#endif