automation around outputs section #197

This commit is contained in:
rusefillc 2021-11-18 20:07:13 -05:00
parent 90fc972716
commit f1103b65bc
1 changed files with 4 additions and 4 deletions

View File

@ -116,19 +116,19 @@ struct ts_outputs_s {
/**
* offset 10
*/
scaled_channel<uint8_t, 1, 1> vehicleSpeedKph = (uint8_t)0;
scaled_channel<uint8_t, 1> vehicleSpeedKph = (uint8_t)0;
/**
* offset 11
*/
scaled_channel<uint8_t, 1, 1> internalMcuTemperature = (uint8_t)0;
scaled_channel<uint8_t, 1> internalMcuTemperature = (uint8_t)0;
/**
* offset 12
*/
scaled_channel<uint16_t, 1, 100> coolantTemperature = (uint16_t)0;
scaled_channel<uint16_t, 100> coolantTemperature = (uint16_t)0;
/**
* offset 14
*/
scaled_channel<uint16_t, 1, 100> intakeAirTemperature = (uint16_t)0;
scaled_channel<uint16_t, 100> intakeAirTemperature = (uint16_t)0;
/** total size 16*/
};