mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-01 13:38:38 -04:00
Tools: param_parse: remove references to APM in parameter generation
This commit is contained in:
parent
229b25d916
commit
b369e86c0c
@ -27,7 +27,7 @@ DO NOT EDIT
|
||||
<h3 style="text-align: center">Complete Parameter List</h3>
|
||||
<hr />
|
||||
|
||||
<p>This is a complete list of the parameters which can be set via the MAVLink protocol in the EEPROM of your APM to control vehicle behaviour. This list is automatically generated from the latest ardupilot source code, and so may contain parameters which are not yet in the stable released versions of the code.</p>
|
||||
<p>This is a complete list of the parameters which can be set via the MAVLink protocol in the EEPROM of your autopilot to control vehicle behaviour. This list is automatically generated from the latest ardupilot source code, and so may contain parameters which are not yet in the stable released versions of the code.</p>
|
||||
|
||||
<!-- add auto-generated table of contents with "Table of Contents Plus" plugin -->
|
||||
[toc exclude="Complete Parameter List"]
|
||||
|
@ -5,7 +5,7 @@ import copy
|
||||
from emit import Emit
|
||||
|
||||
|
||||
# Emit APM documentation in JSON format
|
||||
# Emit ArduPilot documentation in JSON format
|
||||
class JSONEmit(Emit):
|
||||
def __init__(self, *args, **kwargs):
|
||||
Emit.__init__(self, *args, **kwargs)
|
||||
|
@ -29,7 +29,7 @@ class MDEmit(Emit):
|
||||
if os.getenv('BRDOC') is not None:
|
||||
self.header = """---\nlayout: default\ntitle: "Parameters"\npermalink: /parameters/\nnav:"""
|
||||
|
||||
self.preamble = """\nThis is a complete list of the parameters which can be set via the MAVLink protocol in the EEPROM of your APM to control vehicle behaviour. This list is automatically generated from the latest ardupilot source code, and so may contain parameters which are not yet in the stable released versions of the code. Some parameters may only be available for developers, and are enabled at compile-time."""
|
||||
self.preamble = """\nThis is a complete list of the parameters which can be set via the MAVLink protocol in the EEPROM of your autopilot to control vehicle behaviour. This list is automatically generated from the latest ardupilot source code, and so may contain parameters which are not yet in the stable released versions of the code. Some parameters may only be available for developers, and are enabled at compile-time."""
|
||||
self.t = ''
|
||||
|
||||
def close(self):
|
||||
|
@ -5,7 +5,7 @@ from lxml import etree
|
||||
from emit import Emit
|
||||
from param import known_param_fields, known_units
|
||||
|
||||
# Emit APM documentation in an machine readable XML format
|
||||
# Emit ArduPilot documentation in an machine readable XML format
|
||||
class XmlEmit(Emit):
|
||||
def __init__(self, *args, **kwargs):
|
||||
Emit.__init__(self, *args, **kwargs)
|
||||
|
Loading…
Reference in New Issue
Block a user