-
Notifications
You must be signed in to change notification settings - Fork 1
/
calibration.h
24 lines (16 loc) · 1.25 KB
/
calibration.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef CALIBRATION_H
#define CALIBRATION_H
#include <stdint.h>
extern const uint8_t BSGMaxVoltage; ///< [V] BSG max allowed voltage
extern const uint16_t EngineRPMNeutral; ///< [rpm] Engine rotation at neutral gear
extern const uint16_t EngineRPMMaximum; ///< [rpm] Engine max allowed rotation
extern const uint8_t BatteryMinVoltage; ///< [V] Battery minimal allowed voltage under operation
extern const uint8_t BatteryMaxVoltage; ///< [V] Battery max allowed voltage under normal operation conditions
extern const uint8_t BatterySpecVoltage; ///< [V] Battery specification voltage under normal operation conditions
extern const int8_t BatteryMinOperationalCurrent; ///< [A] Battery minimal current under normal operation conditions
extern const uint16_t VehicleMinAccPedal; ///< [%] Vehicle gas pedal dead zone.
extern const uint16_t VehicleHighAccPedal; ///< [%] Vehicle gas pedal value to consider it totally pressed.
extern const uint16_t VehicleMinBrakePedal; ///< [%] Vehicle brake pedal (dead zone)
extern const uint16_t VehicleHighBrakePedal; ///< [%] Vehicle brake pedal value to consider it totally pressed.
extern const uint16_t VehicleMinVelocity;
#endif