26 lines
455 B
C
26 lines
455 B
C
#ifndef MAP_H_
|
|
#define MAP_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif /* __cplusplus */
|
|
|
|
/**
|
|
* @return Raw MAP sensor value right now
|
|
*/
|
|
float getRawMap(void);
|
|
/**
|
|
* @return MAP value averaged within a window of measurement
|
|
*/
|
|
float getMap(void);
|
|
float getMapByVoltage(float voltage);
|
|
float getMAPValueHonda_Denso183(float volts);
|
|
float getMAPValueMPX_4250(float volts);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif
|