Rev 6 |
Go to most recent revision |
Blame |
Compare with Previous |
Last modification |
View Log
| Download
| RSS feed
// This file deals with looking up ignition timing
#pragma once
#define TIMING_SCALE 10
#if defined __cplusplus
extern "C" {
#endif
/// @brief Lookup ignition timing
/// @param rpm Engine Speed in RPM
/// @param vacuumMb Ported vacuum in millibars of vacuum
/// @return Vacuum advance in degrees * TIMING_SCALE;
int mapTiming(int rpm, int vacuumMb);
#if defined __cplusplus
}
#endif