Slurp

Dependencies:   FastPWM3 mbed

Committer:
austinbrown124
Date:
Sat May 20 21:42:20 2017 +0000
Revision:
0:9edd6ec0f56a
First Commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
austinbrown124 0:9edd6ec0f56a 1 #ifndef MATH_OPS_H
austinbrown124 0:9edd6ec0f56a 2 #define MATH_OPS_H
austinbrown124 0:9edd6ec0f56a 3
austinbrown124 0:9edd6ec0f56a 4 #define PI 3.14159265359f
austinbrown124 0:9edd6ec0f56a 5
austinbrown124 0:9edd6ec0f56a 6 #include "math.h"
austinbrown124 0:9edd6ec0f56a 7
austinbrown124 0:9edd6ec0f56a 8 float fmaxf(float x, float y);
austinbrown124 0:9edd6ec0f56a 9 float fminf(float x, float y);
austinbrown124 0:9edd6ec0f56a 10 float fmaxf3(float x, float y, float z);
austinbrown124 0:9edd6ec0f56a 11 float fminf3(float x, float y, float z);
austinbrown124 0:9edd6ec0f56a 12 void limit_norm(float *x, float *y, float limit);
austinbrown124 0:9edd6ec0f56a 13
austinbrown124 0:9edd6ec0f56a 14 #endif