FINAL PROJECT isn't it

Fork of ELEC351 by Plymouth ELEC351 Group T

Revision:
47:6d128e500875
Parent:
25:36699ed589ab
Child:
48:244d6d81bb52
--- a/SERIAL.hpp	Mon Jan 08 19:03:49 2018 +0000
+++ b/SERIAL.hpp	Mon Jan 08 21:53:40 2018 +0000
@@ -3,6 +3,7 @@
 
 #include "mbed.h"
 #include <iostream>
+#include "FIFO.hpp"
 using namespace std;
 
 void DELETE_ALL();
@@ -13,6 +14,12 @@
 void STATE();//Start or Stop sampling
 void LOGGING();
 void HELP();    
+static Serial pc(USBTX, USBRX);//Define serial namespace so the serial comms can be printed to
+static int Log_Value = 0;//Value of the Log
+
+bool Decimal_Check(char Input[100]);
+
+int Decimal_Position(char Input[100]);
 
 
 #endif
\ No newline at end of file