I am writing a OBDII reading library / application in C++. Data is retrieved from the car's computer by sending a simple string command, then passing the result through a function specific to each parameter.
I would like to read a config file of all the commands I want, something like this perhaps:
Name, Command, function
Engine RPM, 010C, ((256*A)+B)/4
Speed, 010D, A
Basically, very simple, all data needs to just be read in as a string. Can anyone recommend a good simple library for this? My target is g++ and/ or Clang on Linux if that matters.