49 lines
1.1 KiB
C++
49 lines
1.1 KiB
C++
#include "pch.h"
|
|
|
|
#include "vr_pwm.h"
|
|
|
|
static OutputPin pins[VR_THRESHOLD_COUNT];
|
|
static SimplePwm pwms[VR_THRESHOLD_COUNT];
|
|
|
|
static void updateVrPwm(int rpm, size_t index) {
|
|
auto& cfg = engineConfiguration->vrThreshold[index];
|
|
|
|
if (cfg.pin == GPIO_UNASSIGNED) {
|
|
return;
|
|
}
|
|
|
|
float thresholdVoltage = interpolate2d(rpm, cfg.rpmBins, cfg.values);
|
|
|
|
// 0v threshold voltage = 3.3v output from mcu = 100% duty
|
|
// 2.5v threshold voltage = 0v output from mcu = 0% duty
|
|
float duty = interpolateClamped(0, 1, 2.5f, 0, thresholdVoltage);
|
|
|
|
pwms[index].setSimplePwmDutyCycle(duty);
|
|
}
|
|
|
|
void updateVrPwm() {
|
|
auto rpm = GET_RPM();
|
|
|
|
for (size_t i = 0; i < efi::size(engineConfiguration->vrThreshold); i++) {
|
|
updateVrPwm(rpm, i);
|
|
}
|
|
}
|
|
|
|
void initVrPwm() {
|
|
for (size_t i = 0; i < efi::size(engineConfiguration->vrThreshold); i++) {
|
|
auto& cfg = engineConfiguration->vrThreshold[i];
|
|
|
|
if (cfg.pin == GPIO_UNASSIGNED) {
|
|
continue;
|
|
}
|
|
|
|
startSimplePwmHard(&pwms[i], "VR PWM",
|
|
&engine->executor,
|
|
cfg.pin,
|
|
&pins[i],
|
|
10000, // it's guaranteed to be hardware PWM, the faster the PWM, the less noise makes it through
|
|
0
|
|
);
|
|
}
|
|
}
|