A .ROB file parser written in C# for the .NET family of languages. A .ROB file is written in a structured ASCII format to describe the internal electronic control unit (ECU) variables used in measurement and calibration of an engine, such as that in an automotive vehicle.
The latest release of Mcs3Rob is available on NuGet.
using System;
using Mcs3Rob;
void Main()
{
var parser = new Mcs3Rob.Parser();
parser.Error += (sender, args) => Console.WriteLine(args.ToString());
var robFile = parser.Read("cal-file-4345.rob");
}
Mcs3Rob is © 2023 Nathan Brown under the MIT license