1

Dependencies:   mbed-dev-f303 FastPWM3

Committer:
shaorui
Date:
Tue Sep 15 08:59:03 2020 +0000
Revision:
53:32218a36df05
Parent:
45:aadebe074af6
1

Who changed what in which revision?

UserRevisionLine numberNew contents of line
benkatz 20:bf9ea5125d52 1 #ifndef MATH_OPS_H
benkatz 20:bf9ea5125d52 2 #define MATH_OPS_H
benkatz 20:bf9ea5125d52 3
benkatz 20:bf9ea5125d52 4 #define PI 3.14159265359f
benkatz 45:aadebe074af6 5 #include "mbed.h"
benkatz 20:bf9ea5125d52 6 #include "math.h"
benkatz 20:bf9ea5125d52 7
benkatz 20:bf9ea5125d52 8 float fmaxf(float x, float y);
benkatz 20:bf9ea5125d52 9 float fminf(float x, float y);
benkatz 20:bf9ea5125d52 10 float fmaxf3(float x, float y, float z);
benkatz 20:bf9ea5125d52 11 float fminf3(float x, float y, float z);
benkatz 34:51647c6c500d 12 float roundf(float x);
benkatz 20:bf9ea5125d52 13 void limit_norm(float *x, float *y, float limit);
benkatz 45:aadebe074af6 14 int float_to_uint(float x, float x_min, float x_max, uint8_t bits);
benkatz 45:aadebe074af6 15 float uint_to_float(int x_int, float x_min, float x_max, uint8_t bits);
benkatz 20:bf9ea5125d52 16
benkatz 20:bf9ea5125d52 17 #endif