12 lines
411 B
C
12 lines
411 B
C
#ifndef FUEL_MAP_T06215_H
|
|
#define FUEL_MAP_T06215_H
|
|
|
|
/* Thin wrapper over the T06215 reverse-engineered phi pipeline.
|
|
* Preserves the legacy host-app API (init_FuelMap / FM_GET_PHIAD);
|
|
* underneath, every call drives phi_service and returns
|
|
* angle_accumulator (RW52) in float degrees. */
|
|
void init_FuelMap(float *PHIAD);
|
|
float FM_GET_PHIAD(float RPM, float ME, float Temp);
|
|
|
|
#endif /* FUEL_MAP_T06215_H */
|