"Personally, I liked the university. They gave us money and facilities, we didn't have to produce anything! You've never been out of college! You don't know what it's like out there! I've WORKED in the private sector. They expect results".- Dr. Raymond Stantz
I wonder if there are any Hobby King updates?
... etc ... uint8_t HotStartTimeout_Sec;// Heclo variables uint8_t engine_max_watt;// Driving adjustments boolean AccelRampEnabled_1; ... etc ...
... etc ... ramcopy.HotStartTimeout_Sec = 0; // Heclo variables ramcopy.engine_max_watt = 100; // engine_max_watt default set to 100 // Driving adjustments ramcopy.AccelRampEnabled_1 = true; ... etc ...
ui->spinMotorWattage->setValue(DeviceData.engine_max_watt);
DeviceData.engine_max_watt = ui->spinMotorWattage->value();
DeviceData.engine_max_watt = VarArray.value(2311).toUInt();
VarArray.insert(2311, QByteArray::number(DeviceData.engine_max_watt));
And now the problems:1. I want to fully translate the help files. Please nudge me in a direction where I can learn how to compile a help file.2. It is not yet clear to me what to do with program updates when new versions appear. What conflicts there will be.