18 lines
295 B
C
18 lines
295 B
C
/*
|
|
* pre_injection.h
|
|
*
|
|
* Created on: Sep 16, 2025
|
|
* Author: herli
|
|
*/
|
|
|
|
#ifndef INC_PRE_INJECTION_H_
|
|
#define INC_PRE_INJECTION_H_
|
|
|
|
#include "stdint.h"
|
|
|
|
extern uint8_t active_PI;
|
|
extern float MEPI;
|
|
extern void PI_EVAL(float RPM, float ME, float MEPI);
|
|
|
|
#endif /* INC_PRE_INJECTION_H_ */
|