Put back parser::lookup_message (#578)

This commit is contained in:
Robbe Derks 2022-03-07 16:18:23 +01:00 committed by GitHub
parent a10347b9b1
commit 908dc0d1f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -105,3 +105,8 @@ std::vector<uint8_t> CANPacker::pack(uint32_t address, const std::vector<SignalP
return ret;
}
// This function has a definition in common.h and is used in PlotJuggler
Msg* CANPacker::lookup_message(uint32_t address) {
return &message_lookup[address];
}