rusEFI
The most advanced open source ECU
Loading...
Searching...
No Matches
sync_edge.h
Go to the documentation of this file.
1#pragma once
2
3enum class SyncEdge : uint8_t {
4 Rise, // Sync on rising edges, use rise+fall for phase info
5 Fall, // Sync on falling edges, use rise+fall for phase info
6 // VR or lazy Hall
7 RiseOnly, // Completely ignore all falling edges (this used to be useOnlyRisingEdgeForTrigger=true etc)
8 // nicer Hall
9 Both // Sync on both edges, use both for phase
10};
SyncEdge
Definition sync_edge.h:3