2017-11-15 11:30:13 -08:00
|
|
|
/**
|
|
|
|
* @date Nov 9, 2017
|
|
|
|
* @author Matthew Kennedy, (c) 2017
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OIL_PRESSURE_H_
|
|
|
|
#define OIL_PRESSURE_H_
|
|
|
|
|
2018-09-16 19:26:57 -07:00
|
|
|
#include "global.h"
|
2017-11-15 11:30:13 -08:00
|
|
|
#include "engine_configuration.h"
|
|
|
|
|
|
|
|
float getOilPressure(DECLARE_ENGINE_PARAMETER_SIGNATURE);
|
|
|
|
bool hasOilPressureSensor(DECLARE_ENGINE_PARAMETER_SIGNATURE);
|
|
|
|
|
|
|
|
#endif
|