Class Summary |
AbstractDecoder |
Typical constructor for this class would look like this
public CSVTypeLog(File f) {
this.setLogFile(f);
this.setDecodedLog(new GenericLog());
this.setT(new Thread(this, "CSV Type Log Loading"));
this.getT().setPriority(Thread.MAX_PRIORITY);
this.getT().start();
} |
CSVTypeLog |
|
FreeEMSBin |
This function takes a binary log file, plucks FreeEMS packets out of it,
filters for standard packets and parses them into fields with appropriate scaling. |
FreeEmsPacket |
Data storage for a generic FreeEMS packet. |
LogField |
|