Midnight Sun Firmware
Loading...
Searching...
No Matches
one_pedal_drive.h
1#pragma once
2
3/************************************************************************************************
4 * @file one_pedal_drive.h
5 *
6 * @brief Source code for One pedal drive
7 *
8 * @date 2025-02-06
9 * @author Midnight Sun Team #24 - MSXVI
10 ************************************************************************************************/
11
12/* Standard library Headers */
13
14/* Inter-component Headers */
15#include "global_enums.h"
16
17/* Intra-component Headers */
18#include "bms_carrier.h"
19
27#define MAX_COASTING_THRESHOLD 0.4f
29#define MAX_OPD_SPEED 16.0f
31#define COASTING_THRESHOLD_SCALE 0.025f
32
38};
39
45float opd_threshold(float car_velocity_kmh);
46
51float opd_current(float throttle_percent, float threshold, DriveState *drive_state);
52
DriveState
Vehicle drive states.
Definition: global_enums.h:32
float opd_threshold(float car_velocity_kmh)
Calclulate the one pedal drive threshold.
Definition: one_pedal_drive.c:20
float opd_current(float throttle_percent, float threshold, DriveState *drive_state)
Calculate the motor current based on the pedal position, threshold and drive state.
Definition: one_pedal_drive.c:30
One pedal drive storage.
Definition: one_pedal_drive.h:36
float opd_threshold
Definition: one_pedal_drive.h:37