15 lines
348 B
C
15 lines
348 B
C
/*
|
||
* math.h
|
||
*
|
||
* Created on: 2 февр. 2026 г.
|
||
* Author: v0stap
|
||
*/
|
||
|
||
#ifndef INC_MATH_H_
|
||
#define INC_MATH_H_
|
||
|
||
uint16_t map16_t(uint16_t x, uint16_t in_min, uint16_t in_max, uint16_t out_min, uint16_t out_max);
|
||
uint16_t LPF(unsigned short lpf_c, unsigned short value, unsigned short old_value);
|
||
|
||
#endif /* INC_MATH_H_ */
|