Spaces:
Running
Running
| class FuelLearningTable { | |
| private: | |
| float corrections[16][16]; | |
| uint32_t cellHits[16][16]; | |
| public: | |
| FuelLearningTable(); | |
| void reset(); | |
| bool save(); | |
| bool load(); | |
| float getCorrection(float load, float rpm); | |
| void update(float load, float rpm, float correction); | |
| float getProgress() const; | |
| }; | |