26 lines
651 B
C++
26 lines
651 B
C++
/*
|
|
* trigger_misc.h
|
|
*
|
|
* Created on: Oct 30, 2018
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
class TriggerWaveform;
|
|
|
|
void configureFiatIAQ_P8(TriggerWaveform * s);
|
|
void configureDaihatsu4(TriggerWaveform * s);
|
|
void configureFordPip(TriggerWaveform * s);
|
|
void configureFordST170(TriggerWaveform * s);
|
|
void configureTriTach(TriggerWaveform * s);
|
|
// TT_VVT_BARRA_3_PLUS_1
|
|
void configureBarra3plus1cam(TriggerWaveform *s);
|
|
void configureBenelli(TriggerWaveform *s);
|
|
|
|
/**
|
|
* @brief Configure trigger as Sovek or Saruman ignition
|
|
* @param s Trigger waveform visitor to config
|
|
*/
|
|
void configure60degSingleTooth(TriggerWaveform *s);
|