Proj 324 Final

Fork of ELEC351_Group_T by Plymouth ELEC351 Group T

SERIAL_COMMANDS.hpp

Committer:
thomasmorris
Date:
2018-01-09
Revision:
52:99915f5240b2
Parent:
48:244d6d81bb52
Child:
53:71f59e195f06

File content as of revision 52:99915f5240b2:

/*
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;       
void Serial_Commands_Output();

extern int NetworkWaitTime;
extern Ticker Sampling_Timer;   //Controls Sampling

extern char input[100];         //Character input buffer used for the serial inputs

#endif