But there is one little thing that bothers me. When you export the logged ECU parametres into CSV file, you use comma (,) as a seperator for different values. But You also use comma as a decimal separator. And this is a bit annoying and confusing, and it makes it harder to use and work with the data in Excel.
This is the way it looks when you open the file:
Code: Select all
Engine Speed,"Desired Intake Air Quantity","Intake Air Quantity","Battery Voltage","Gas Pedal Position"
rpm,"mg/i","mg/i","V","%"
0,0000,411,3000,0,0000,12,0624,0,0000
0,0000,411,3000,0,0000,12,0624,0,0000
0,0000,411,3000,0,0000,12,0624,0,0000
...
To make it look like this:
Code: Select all
Engine Speed;"Desired Intake Air Quantity";"Intake Air Quantity";"Battery Voltage";"Gas Pedal Position"
rpm;"mg/i";"mg/i";"V";"%"
0,0000;411,3000;0,0000;12,0624;0,0000
0,0000;411,3000;0,0000;12,0624;0,0000
0,0000;411,3000;0,0000;12,0624;0,0000
...
Thanks, and keep up the good work!