Implemented legacy icsneoGetTimeStampForMsg() function call.

Signed-off-by: David Rebbe <drebbe@intrepidcs.com>
This commit is contained in:
David Rebbe
2019-04-05 19:09:52 -04:00
parent ec30696110
commit 23c3cc3763
9 changed files with 61 additions and 4 deletions
+4
View File
@@ -67,6 +67,10 @@ bool Device::SerialStringIsNumeric(const std::string& serial) {
return isdigit(serial[0]) && isdigit(serial[1]);
}
int Device::getTimestampMultiplier() const {
return com->decoder->timestampMultiplier;
}
std::string Device::describe() const {
std::stringstream ss;
ss << getType() << ' ' << getSerial();