rusEFI
The most advanced open source ECU
Loading...
Searching...
No Matches
torque_model.h
Go to the documentation of this file.
1// torque_model.h
2
3#pragma once
4
5/**
6 * Torque Request Sources - Priority-based arbitration
7 */
8enum class TorqueRequestSource : uint8_t {
9 DRIVER = 0, // Highest priority - Driver pedal input
10 IDLE, // Idle speed control
11 TRACTION_CONTROL, // Traction control system
12 LAUNCH_CONTROL, // Launch control
13 TRANSMISSION, // TCU requests
14 SPEED_LIMITER, // Vehicle speed limiting
15 ENGINE_PROTECTION, // Engine protection (overrev, etc.)
16 FUEL_CUT // Fuel cut strategies
17};
18
20
21public:
23
24};
TorqueRequestSource
Definition torque_model.h:8