bio robot

Dependencies:   MPU6050-DMP QEI_hw mbed-rpc mbed

Fork of MPU6050_Example by Shundo Kishi

Committer:
amandaghassaei
Date:
Wed Dec 09 03:25:22 2015 +0000
Revision:
13:64d337c5114e
Parent:
12:49813131dd15
Child:
15:d88f10b3b5f8
limits on th des;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
amandaghassaei 8:1a3a69fecedf 1 #ifndef Dynamics_h
amandaghassaei 8:1a3a69fecedf 2 #define Dynamics_h
amandaghassaei 8:1a3a69fecedf 3
amandaghassaei 9:1d9b24d7ac77 4
amandaghassaei 8:1a3a69fecedf 5 #include "Kinematics.h"
amandaghassaei 9:1d9b24d7ac77 6 #include "Gains.h"
amandaghassaei 12:49813131dd15 7 #include "Target.h"
amandaghassaei 8:1a3a69fecedf 8
amandaghassaei 8:1a3a69fecedf 9
amandaghassaei 12:49813131dd15 10 float calcTau(volatile float z[4], float p[10], Gains *gains, Target *target, Serial *pc);
amandaghassaei 13:64d337c5114e 11 float thetaDesiredForSwingUp(float rangeMin, float rangeMax, volatile float z[4]);
amandaghassaei 12:49813131dd15 12 float thetaDesiredForTargeting(volatile float z[4]);
amandaghassaei 8:1a3a69fecedf 13 int fix(float val);//round toward zero
amandaghassaei 8:1a3a69fecedf 14
amandaghassaei 8:1a3a69fecedf 15
amandaghassaei 8:1a3a69fecedf 16
amandaghassaei 8:1a3a69fecedf 17
amandaghassaei 8:1a3a69fecedf 18
amandaghassaei 8:1a3a69fecedf 19 #endif