rusEFI
The most advanced open source ECU
Loading...
Searching...
No Matches
sachs.cpp
Go to the documentation of this file.
1/**
2 * @file sachs.cpp
3 *
4 * set engine_type 29
5 * http://rusefi.com/forum/viewtopic.php?f=3&t=396
6 *
7 * @date Jan 26, 2015
8 * @author Andrey Belomutskiy, (c) 2012-2020
9 */
10
11#include "pch.h"
12
13#include "sachs.h"
14
15// used by HW CI
16void setSachs() {
17 engineConfiguration->displacement = 0.1; // 100cc
18 engineConfiguration->cylindersCount = 1;
19
20 engineConfiguration->twoStroke = true;
21 engineConfiguration->firingOrder = FO_1;
22 engineConfiguration->engineChartSize = 400;
23
24 /**
25 * 50/2 trigger
26 */
28 engineConfiguration->trigger.customTotalToothCount = 50;
29 engineConfiguration->trigger.customSkippedToothCount = 2;
30}
static constexpr engine_configuration_s * engineConfiguration
void setSachs()
Definition sachs.cpp:16