mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-07-06 04:20:34 +08:00
7778cbd463
* Add param for software flow ctl on 3DR radios * Dont reset telemetry type on radio timeout * Treat 3DR radio as generic link type * Rename 3DR to SiK radio
98 lines
3.6 KiB
YAML
98 lines
3.6 KiB
YAML
__max_num_config_instances: &max_num_config_instances 3
|
|
|
|
module_name: MAVLink
|
|
serial_config:
|
|
- command: |
|
|
set MAV_ARGS "-b p:${BAUD_PARAM} -m p:MAV_${i}_MODE -r p:MAV_${i}_RATE"
|
|
if param compare MAV_${i}_FORWARD 1
|
|
then
|
|
set MAV_ARGS "${MAV_ARGS} -f"
|
|
fi
|
|
if param compare MAV_${i}_RADIO_CTL 1
|
|
then
|
|
set MAV_ARGS "${MAV_ARGS} -s"
|
|
fi
|
|
mavlink start -d ${SERIAL_DEV} ${MAV_ARGS} -x
|
|
port_config_param:
|
|
name: MAV_${i}_CONFIG
|
|
group: MAVLink
|
|
# MAVLink instances:
|
|
# 0: Telem1 Port (Telemetry Link)
|
|
# 1: Telem2 Port (Companion Link). Disabled by default to reduce RAM usage
|
|
# 2: Board-specific / no fixed function or port
|
|
default: [TEL1, "", ""]
|
|
num_instances: *max_num_config_instances
|
|
|
|
parameters:
|
|
- group: MAVLink
|
|
definitions:
|
|
MAV_${i}_MODE:
|
|
description:
|
|
short: MAVLink Mode for instance ${i}
|
|
long: |
|
|
The MAVLink Mode defines the set of streamed messages (for example the
|
|
vehicle's attitude) and their sending rates.
|
|
|
|
type: enum
|
|
values:
|
|
0: Normal
|
|
1: Custom
|
|
2: Onboard
|
|
3: OSD
|
|
4: Magic
|
|
5: Config
|
|
#6: Iridium # as the user does not need to configure this, hide it from the UI
|
|
7: Minimal
|
|
8: External Vision
|
|
reboot_required: true
|
|
num_instances: *max_num_config_instances
|
|
default: [0, 2, 0]
|
|
|
|
MAV_${i}_RATE:
|
|
description:
|
|
short: Maximum MAVLink sending rate for instance ${i}
|
|
long: |
|
|
Configure the maximum sending rate for the MAVLink streams in Bytes/sec.
|
|
If the configured streams exceed the maximum rate, the sending rate of
|
|
each stream is automatically decreased.
|
|
|
|
If this is set to 0 a value of half of the theoretical maximum bandwidth is used.
|
|
This corresponds to baudrate/20 Bytes/s (baudrate/10 = maximum data rate on
|
|
8N1-configured links).
|
|
|
|
type: int32
|
|
min: 0
|
|
unit: B/s
|
|
reboot_required: true
|
|
num_instances: *max_num_config_instances
|
|
default: [1200, 0, 0]
|
|
|
|
MAV_${i}_FORWARD:
|
|
description:
|
|
short: Enable MAVLink Message forwarding for instance ${i}
|
|
long: |
|
|
If enabled, forward incoming MAVLink messages to other MAVLink ports if the
|
|
message is either broadcast or the target is not the autopilot.
|
|
|
|
This allows for example a GCS to talk to a camera that is connected to the
|
|
autopilot via MAVLink (on a different link than the GCS).
|
|
|
|
type: boolean
|
|
reboot_required: true
|
|
num_instances: *max_num_config_instances
|
|
default: [true, false, false]
|
|
|
|
MAV_${i}_RADIO_CTL:
|
|
description:
|
|
short: Enable software throttling of mavlink on instance ${i}
|
|
long: |
|
|
If enabled, MAVLink messages will be throttled according to
|
|
`txbuf` field reported by radio_status.
|
|
|
|
Requires a radio to send the mavlink message RADIO_STATUS.
|
|
|
|
type: boolean
|
|
reboot_required: true
|
|
num_instances: *max_num_config_instances
|
|
default: [true, true, true]
|