Enable new ESP8266 TELEM2 output mode

This commit is contained in:
Lorenz Meier
2016-04-29 14:59:11 +02:00
parent 18b72241ce
commit a741257293
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -530,6 +530,10 @@ then
then
mavlink start -d /dev/ttyS2 -b 57600 -r 1000
fi
if param compare SYS_COMPANION 1921600
then
mavlink start -d /dev/ttyS2 -b 921600 -r 20000
fi
# Sensors on the PWM interface bank
# clear pins 5 and 6
if param compare SENS_EN_LL40LS 1
+1 -1
View File
@@ -25,7 +25,7 @@ class XMLOutput():
xml_version = ET.SubElement(xml_parameters, "parameter_version_major")
xml_version.text = "1"
xml_version = ET.SubElement(xml_parameters, "parameter_version_minor")
xml_version.text = "7"
xml_version.text = "8"
importtree = ET.parse(inject_xml_file_name)
injectgroups = importtree.getroot().findall("group")
for igroup in injectgroups: