forked from bw1129/PIDtoolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PTrc2deg.m
36 lines (31 loc) · 1.34 KB
/
PTrc2deg.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
function [angleRate] = PTrc2deg(X,rcRate,rcExpo,superrate, rcRateConstant)
% raw RCcommand data to RCrate in deg/s, i.e. "set point"
% with help from: https://github.com/betaflight/betaflight-configurator/blob/master/src/js/RateCurve.js
% X is a vector containing a single axis of RCcommand data scaled from -500 to 500,
% rcRate(0-255),rcExpo(0-100),superrate(0-100)
expoPower=3;
rcRateConstant=rcRateConstant;
angleRate=[];
rcRate=rcRate/100;
rcExpo=(rcExpo/100);
superrate=superrate/100;
maxRC=500;
rcCommandf = X / maxRC;
rcCommandfAbs = abs(rcCommandf) / 1;%max(abs(rcCommandf));
if (rcRate > 2)
rcRate = rcRate + (rcRate - 2) * 14.54;
end
if (rcExpo > 0)
%disp('rcExpo > 0')
rcCommandf = rcCommandf .* power(rcCommandfAbs, expoPower) * rcExpo + rcCommandf * (1-rcExpo);
end
if (superrate > 0)
%disp('superrate > 0')
rcFactor = 1 ./ (1 - rcCommandfAbs * superrate); % this creates the super expo curve needed to convert RCcommand to RCrate
angleRate = (rcRateConstant * rcRate * rcCommandf);
angleRate = angleRate .* rcFactor;
% disp(['angleRate:' num2str(angleRate) ' rcFactor:' num2str(rcFactor)])
else
angleRate = (rcRateConstant * rcRate * rcCommandf);
end
end