MBED Framework with communication to be tested

Dependencies:   mbed

Committer:
AndrewLouw
Date:
Thu Jun 15 14:53:00 2017 +0000
Revision:
1:e8c5a9654f5f
Parent:
0:a32d085719df
Child:
2:64443528f6bb
Most shell functions done;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AndrewLouw 0:a32d085719df 1 typedef enum OpModesym {Setup, Canopy_on, Canopy_off, Manual, Error} OpModesym;
AndrewLouw 0:a32d085719df 2 typedef enum Errorsym {False,Switch_Error} Errorsym;
AndrewLouw 0:a32d085719df 3
AndrewLouw 0:a32d085719df 4
AndrewLouw 0:a32d085719df 5 OpModesym readswitches();
AndrewLouw 0:a32d085719df 6 void checkLDR(float &LDR1,float &LDR2);
AndrewLouw 1:e8c5a9654f5f 7 void checkMPPT(float *MMPT);
AndrewLouw 1:e8c5a9654f5f 8 bool shouldmove(float *MMPT,float LDR1,float LDR2,double Upperlimit,double Lowelimit,double *panel_locations);
AndrewLouw 0:a32d085719df 9 void getlocations(double Upperlimit, double Lowerlimit,double *panel_locations);
AndrewLouw 0:a32d085719df 10 void sendlocations(double *panel_locations);
AndrewLouw 1:e8c5a9654f5f 11 uint8_t toEncoder(double angle);
AndrewLouw 0:a32d085719df 12 void interruptHandler();