rusefi-1/firmware/controllers/engine_cycle/knock_logic.h

37 lines
920 B
C++

/*
* @file knock_logic.h
*
* @date Apr 04, 2021
* @author Andrey Gusakov
*/
#pragma once
#include "peak_detect.h"
#include "knock_controller_generated.h"
int getCylinderKnockBank(uint8_t cylinderNumber);
class KnockController : public EngineModule, public knock_controller_s {
public:
KnockController() {
// start with threshold higher than any possible knock to avoid recording spurious knocks
m_knockThreshold = 100;
}
// EngineModule implementation
void onFastCallback() override;
// onKnockSenseCompleted is the callback from the knock sense driver to report a sensed knock level
bool onKnockSenseCompleted(uint8_t cylinderNumber, float dbv, efitick_t lastKnockTime);
float getKnockRetard() const;
uint32_t getKnockCount() const;
virtual float getKnockThreshold() const;
private:
using PD = PeakDetect<float, MS2NT(100)>;
PD peakDetectors[12];
PD allCylinderPeakDetector;
};