Skip to content

Commit

Permalink
LUA : added bindings for extended ESC telem
Browse files Browse the repository at this point in the history
  • Loading branch information
Pradeep-Carbonix committed Jun 5, 2024
1 parent 5d60277 commit b3dc8b4
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
18 changes: 18 additions & 0 deletions libraries/AP_Scripting/docs/docs.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1249,6 +1249,24 @@ function esc_telem:set_rpm_scale(esc_index, scale_factor) end
---@return uint32_t_ud
function esc_telem:get_last_telem_data_ms(esc_index) end

-- get the input_duty of last telemetry data for an ESC
---@param esc_index integer
---@param input_duty integer
---@return boolean
function esc_telem:get_input_duty(esc_index, input_duty) end

-- get the output_duty of last telemetry data for an ESC
---@param esc_index integer
---@param output_duty integer
---@return boolean
function esc_telem:get_output_duty(esc_index, output_duty) end

-- get the status flags of the last telemetry data for an ESC
---@param esc_index integer
---@param flags integer
---@return boolean
function esc_telem:get_flags(esc_index, flags) end

-- desc
---@class optical_flow
optical_flow = {}
Expand Down
3 changes: 3 additions & 0 deletions libraries/AP_Scripting/generator/description/bindings.desc
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,9 @@ singleton AP_ESC_Telem method get_usage_seconds boolean uint8_t 0 NUM_SERVO_CHAN
singleton AP_ESC_Telem method update_rpm void uint8_t 0 NUM_SERVO_CHANNELS uint16_t'skip_check float'skip_check
singleton AP_ESC_Telem method set_rpm_scale void uint8_t 0 NUM_SERVO_CHANNELS float'skip_check
singleton AP_ESC_Telem method get_last_telem_data_ms uint32_t uint8_t 0 NUM_SERVO_CHANNELS
singleton AP_ESC_Telem method get_input_duty boolean uint8_t 0 NUM_SERVO_CHANNELS uint8_t'Null
singleton AP_ESC_Telem method get_output_duty boolean uint8_t 0 NUM_SERVO_CHANNELS uint8_t'Null
singleton AP_ESC_Telem method get_flags boolean uint8_t 0 NUM_SERVO_CHANNELS uint32_t'Null

include AP_Param/AP_Param.h
singleton AP_Param rename param
Expand Down

0 comments on commit b3dc8b4

Please sign in to comment.