Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of ELEC351 by
SERIAL_COMMANDS.hpp@47:6d128e500875, 2018-01-08 (annotated)
- Committer:
- thomasmorris
- Date:
- Mon Jan 08 21:53:40 2018 +0000
- Revision:
- 47:6d128e500875
- Child:
- 48:244d6d81bb52
FINAL working copy
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
thomasmorris | 47:6d128e500875 | 1 | #ifndef SERIAL_COMMANDS_hpp |
thomasmorris | 47:6d128e500875 | 2 | #define SERIAL_COMMANDS_HPP |
thomasmorris | 47:6d128e500875 | 3 | #include "TIME.hpp" |
thomasmorris | 47:6d128e500875 | 4 | #include "DATA.hpp" |
thomasmorris | 47:6d128e500875 | 5 | #include "SERIAL.hpp" |
thomasmorris | 47:6d128e500875 | 6 | #include "SAMPLE.hpp" |
thomasmorris | 47:6d128e500875 | 7 | extern float Sample_Rate; |
thomasmorris | 47:6d128e500875 | 8 | void Serial_Commands_Output(); |
thomasmorris | 47:6d128e500875 | 9 | //Tickers |
thomasmorris | 47:6d128e500875 | 10 | extern Ticker Console_Output_Timer;//Controls Serial comms |
thomasmorris | 47:6d128e500875 | 11 | extern Ticker Sampling_Timer;//Controls Sampling |
thomasmorris | 47:6d128e500875 | 12 | |
thomasmorris | 47:6d128e500875 | 13 | extern char input[100]; |
thomasmorris | 47:6d128e500875 | 14 | |
thomasmorris | 47:6d128e500875 | 15 | #endif |