mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-02 05:04:08 +08:00
- Add versioning to interfacing messages - Add header description - Add units, frame and range wherever possible
18 lines
1.0 KiB
Plaintext
18 lines
1.0 KiB
Plaintext
# Fixed Wing Longitudinal Control Configuration message
|
|
# Used by the fw_lateral_longitudinal_control module and TECS to constrain FixedWingLongitudinalSetpoint messages
|
|
# and configure the resultant setpoints.
|
|
|
|
uint32 MESSAGE_VERSION = 0
|
|
|
|
uint64 timestamp # time since system start (microseconds)
|
|
|
|
float32 pitch_min # [rad]
|
|
float32 pitch_max # [rad]
|
|
float32 throttle_min # [0,1]
|
|
float32 throttle_max # [0,1]
|
|
float32 climb_rate_target # [m/s] target climbrate used to change altitude. Not used if height_rate is directly set in FixedWingLongitudinalSetpoint.
|
|
float32 sink_rate_target # [m/s] target sinkrate used to change altitude. Not used if height_rate is directly set in FixedWingLongitudinalSetpoint.
|
|
float32 speed_weight # [0,2], 0=pitch controls altitude only, 2=pitch controls airspeed only
|
|
bool enforce_low_height_condition # if true, total energy controller will use lower altitude control time constant
|
|
bool disable_underspeed_protection # if true, underspeed handling is disabled in the total energy controller
|