Mike Etek Controller

Dependencies:   mbed

Revision:
0:9edd6ec0f56a
Child:
1:94193b31f0ee
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/math_ops/math_ops.h	Sat May 20 21:42:20 2017 +0000
@@ -0,0 +1,14 @@
+#ifndef MATH_OPS_H
+#define MATH_OPS_H
+
+#define PI 3.14159265359f
+
+#include "math.h"
+
+float fmaxf(float x, float y);
+float fminf(float x, float y);
+float fmaxf3(float x, float y, float z);
+float fminf3(float x, float y, float z);
+void limit_norm(float *x, float *y, float limit);
+
+#endif