modifications to run via legfile.txt and then exit, manage logfile versions, diagnostics file

Dependencies:   mbed MODSERIAL FATFileSystem

Committer:
joel_ssc
Date:
Tue Feb 19 20:11:43 2019 +0000
Revision:
84:eccd8e837134
Parent:
73:f6f378311c8d
updated file management of logfiles and diagfile numbers

Who changed what in which revision?

UserRevisionLine numberNew contents of line
tnhnrl 73:f6f378311c8d 1 #ifndef SENSORS_HPP
tnhnrl 73:f6f378311c8d 2 #define SENSORS_HPP
tnhnrl 73:f6f378311c8d 3
tnhnrl 73:f6f378311c8d 4 #include "mbed.h"
tnhnrl 73:f6f378311c8d 5
tnhnrl 73:f6f378311c8d 6 class Sensors {
tnhnrl 73:f6f378311c8d 7 public:
tnhnrl 73:f6f378311c8d 8 Sensors();
tnhnrl 73:f6f378311c8d 9
tnhnrl 73:f6f378311c8d 10 float getInternalPressurePSI();
tnhnrl 73:f6f378311c8d 11 float getVoltageInput();
tnhnrl 73:f6f378311c8d 12 float getCurrentInput();
tnhnrl 73:f6f378311c8d 13 float getAltimeterChannelReadings();
tnhnrl 73:f6f378311c8d 14
tnhnrl 73:f6f378311c8d 15 private:
tnhnrl 73:f6f378311c8d 16 float _reference_voltage;
tnhnrl 73:f6f378311c8d 17 };
tnhnrl 73:f6f378311c8d 18
tnhnrl 73:f6f378311c8d 19 #endif /* GUI_HPP */