opening the door to boost controller!
This commit is contained in:
parent
c2f0a30397
commit
7c714e5727
|
@ -11,6 +11,7 @@
|
||||||
|
|
||||||
#define EFI_GPIO_HARDWARE TRUE
|
#define EFI_GPIO_HARDWARE TRUE
|
||||||
|
|
||||||
|
#define EFI_BOOST_CONTROL TRUE
|
||||||
#define EFI_FSIO TRUE
|
#define EFI_FSIO TRUE
|
||||||
|
|
||||||
#ifndef EFI_CDM_INTEGRATION
|
#ifndef EFI_CDM_INTEGRATION
|
||||||
|
|
|
@ -0,0 +1,27 @@
|
||||||
|
/*
|
||||||
|
* boost_control.h
|
||||||
|
*
|
||||||
|
* Created on: 18. aug. 2019
|
||||||
|
* Author: Ola Ruud
|
||||||
|
*/
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "engine.h"
|
||||||
|
#include "periodic_task.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
void startBoostPin(void);
|
||||||
|
void stopBoostPin(void);
|
||||||
|
void initBoostCtrl(Logging *sharedLogger);
|
||||||
|
void setBoostPFactor(float p);
|
||||||
|
void setBoostIFactor(float i);
|
||||||
|
void setBoostDFactor(float d);
|
||||||
|
void setDefaultBoostParameters(DECLARE_CONFIG_PARAMETER_SIGNATURE);
|
||||||
|
void showBoostInfo(void);
|
||||||
|
void onConfigurationChangeBoostCallback(engine_configuration_s *previousConfiguration);
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -139,7 +139,7 @@ public:
|
||||||
OutputPin debugTriggerSync;
|
OutputPin debugTriggerSync;
|
||||||
OutputPin debugTimerCallback;
|
OutputPin debugTimerCallback;
|
||||||
OutputPin debugSetTimer;
|
OutputPin debugSetTimer;
|
||||||
|
OutputPin boostPin;
|
||||||
OutputPin idleSolenoidPin;
|
OutputPin idleSolenoidPin;
|
||||||
OutputPin alternatorPin;
|
OutputPin alternatorPin;
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue