Proj 324 Final

Fork of ELEC351_Group_T by Plymouth ELEC351 Group T

Committer:
thomasmorris
Date:
Sat Dec 30 20:55:48 2017 +0000
Revision:
23:3c85d7f657a2
Working on Serial Comms

Who changed what in which revision?

UserRevisionLine numberNew contents of line
thomasmorris 23:3c85d7f657a2 1 #ifndef _SERIAL_HPP_ //Known as header guards
thomasmorris 23:3c85d7f657a2 2 #define _SERIAL_HPP_
thomasmorris 23:3c85d7f657a2 3
thomasmorris 23:3c85d7f657a2 4 #include "mbed.h"
thomasmorris 23:3c85d7f657a2 5 #include <iostream>
thomasmorris 23:3c85d7f657a2 6 void READ_ALL();
thomasmorris 23:3c85d7f657a2 7 void DELETE_ALL();
thomasmorris 23:3c85d7f657a2 8 void READ_n();
thomasmorris 23:3c85d7f657a2 9 void DELETE_n();
thomasmorris 23:3c85d7f657a2 10 void SETDATE();
thomasmorris 23:3c85d7f657a2 11 void SETT();//Set the sampling rate
thomasmorris 23:3c85d7f657a2 12 void STATE();//Start or Stop sampling
thomasmorris 23:3c85d7f657a2 13 void LOGGING();
thomasmorris 23:3c85d7f657a2 14 void HELP();
thomasmorris 23:3c85d7f657a2 15
thomasmorris 23:3c85d7f657a2 16
thomasmorris 23:3c85d7f657a2 17 #endif