Proj 324 Final

Fork of ELEC351_Group_T by Plymouth ELEC351 Group T

Revision:
52:99915f5240b2
Parent:
48:244d6d81bb52
Child:
53:71f59e195f06
--- a/SERIAL_COMMANDS.hpp	Tue Jan 09 15:15:08 2018 +0000
+++ b/SERIAL_COMMANDS.hpp	Tue Jan 09 22:27:49 2018 +0000
@@ -1,17 +1,21 @@
-#ifndef SERIAL_COMMANDS_hpp
+/*
+This is where the serial interface is controlled from
+*/
+
+#ifndef SERIAL_COMMANDS_HPP//Header Guards Prevents Multiple includes
 #define SERIAL_COMMANDS_HPP
+//Libraries and header includes
 #include "TIME.hpp"
 #include "DATA.hpp"
 #include "SERIAL.hpp"
 #include "SAMPLE.hpp"
-extern float Sample_Rate;
+
+extern float Sample_Rate;       
 void Serial_Commands_Output();
 
 extern int NetworkWaitTime;
-//Tickers
-extern Ticker Console_Output_Timer;//Controls Serial comms
-extern Ticker Sampling_Timer;//Controls Sampling
+extern Ticker Sampling_Timer;   //Controls Sampling
 
-extern char input[100];
+extern char input[100];         //Character input buffer used for the serial inputs
 
 #endif
\ No newline at end of file