forked from ArduPilot/ardupilot
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AP_Scripting: example to test ESC slew limit
can be used to calculate equivalent cutoff frequency
- Loading branch information
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--[[ | ||
run an ESC with a sinisoidal demand, with settable limits and frequency | ||
--]] | ||
|
||
local PARAM_TABLE_KEY = 136 | ||
local PARAM_TABLE_PREFIX = "ETEST_" | ||
|
||
-- add a parameter and bind it to a variable | ||
function bind_add_param(name, idx, default_value) | ||
assert(param:add_param(PARAM_TABLE_KEY, idx, name, default_value), string.format('could not add param %s', name)) | ||
return Parameter(PARAM_TABLE_PREFIX .. name) | ||
end | ||
|
||
-- setup script specific parameters | ||
assert(param:add_table(PARAM_TABLE_KEY, PARAM_TABLE_PREFIX, 10), 'could not add param table') | ||
|
||
local ETEST_CHAN = bind_add_param('CHAN', 1, 0) | ||
local ETEST_PCT = bind_add_param('PCT', 2, 100) | ||
local ETEST_PWM_MIN = bind_add_param('PWM_MIN', 3, 1000) | ||
local ETEST_PWM_MAX = bind_add_param('PWM_MAX', 4, 2000) | ||
local ETEST_FREQ = bind_add_param('FREQ', 5, 1) | ||
|
||
function update() | ||
local chan = ETEST_CHAN:get() | ||
local freq = ETEST_FREQ:get() | ||
if chan > 0 and freq > 0 then | ||
local t = 0.001 * millis():tofloat() | ||
local pi = 3.1415 | ||
local output = math.sin(pi * t * freq * 2.0) * ETEST_PCT:get() * 0.01 | ||
local pwm_min = ETEST_PWM_MIN:get() | ||
local pwm_max = ETEST_PWM_MAX:get() | ||
local pwm_mid = 0.5*(pwm_min+pwm_max) | ||
local pwm = math.floor(pwm_mid + (pwm_max-pwm_mid) * output) | ||
SRV_Channels:set_output_pwm_chan_timeout(chan-1, pwm, 100) | ||
logger.write('ESLW', 'PWM,Freq', 'If', pwm, freq) | ||
gcs:send_named_float('PWN',pwm) | ||
gcs:send_named_float('FREQ',freq) | ||
end | ||
return update, 5 -- 200Hz | ||
end | ||
|
||
return update() |