2024-08-23 07:17:36 -07:00
|
|
|
//
|
|
|
|
// Created by kifir on 8/23/24.
|
|
|
|
//
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace engine_configuration_defaults {
|
2024-08-23 07:36:53 -07:00
|
|
|
/* A/C Settings: */
|
|
|
|
constexpr float AC_DELAY = 0.5f;
|
|
|
|
constexpr uint16_t MIN_AC_PRESSURE = 100;
|
|
|
|
constexpr uint16_t MAX_AC_PRESSURE = 300;
|
2024-08-23 07:17:36 -07:00
|
|
|
constexpr float AC_PRESSURE_ENABLE_HYST = 10.0f;
|
2024-10-02 07:00:39 -07:00
|
|
|
|
|
|
|
/* Shift Torque Reduction (Flat Shift): */
|
|
|
|
constexpr bool ENABLE_SHIFT_TORQUE_REDUCTION = false;
|
|
|
|
constexpr torqueReductionActivationMode_e TORQUE_REDUCTION_ACTIVATION_MODE = TORQUE_REDUCTION_BUTTON;
|
|
|
|
constexpr switch_input_pin_e TORQUE_REDUCTION_TRIGGER_PIN = Gpio::Unassigned;
|
|
|
|
constexpr bool TORQUE_REDUCTION_TRIGGER_PIN_INVERTED = false;
|
2024-10-02 10:54:35 -07:00
|
|
|
constexpr float TORQUE_REDUCTION_TIME = 0.0f;
|
2024-10-03 13:27:15 -07:00
|
|
|
constexpr float TORQUE_REDUCTION_ARMING_RPM = 0.0f;
|
|
|
|
constexpr float TORQUE_REDUCTION_ARMING_APP = 0.0f;
|
2024-10-02 07:00:39 -07:00
|
|
|
|
|
|
|
/* Launch Control: */
|
|
|
|
constexpr switch_input_pin_e LAUNCH_ACTIVATE_PIN = Gpio::Unassigned;
|
|
|
|
constexpr bool LAUNCH_ACTIVATE_PIN_INVERTED = false;
|
2024-08-23 07:17:36 -07:00
|
|
|
}
|