rusefi/firmware/controllers/trigger/decoders/sync_edge.h

11 lines
363 B
C
Raw Normal View History

#pragma once
enum class SyncEdge : uint8_t {
Rise, // Sync on rising edges, use rise+fall for phase info
Fall, // Sync on falling edges, use rise+fall for phase info
2022-11-16 09:18:34 -08:00
// VR or lazy Hall
RiseOnly, // Completely ignore all falling edges (this used to be useOnlyRisingEdgeForTrigger=true etc)
2022-11-16 09:18:34 -08:00
// nicer Hall
Both // Sync on both edges, use both for phase
};