[modules] allow to load modules from a flight plan

This commit is contained in:
Gautier Hattenberger
2016-02-17 23:11:03 +01:00
parent dbb0c6c2ef
commit c697449e98
9 changed files with 77 additions and 34 deletions
+9 -1
View File
@@ -1,6 +1,6 @@
<!-- Paparazzi flight plan DTD -->
<!ELEMENT flight_plan (header?,waypoints,sectors?,variables?,includes?,exceptions?,blocks)>
<!ELEMENT flight_plan (header?,waypoints,sectors?,variables?,modules?,includes?,exceptions?,blocks)>
<!ELEMENT procedure (param*,header?,waypoints?,sectors?,exceptions?,blocks?)>
@@ -17,6 +17,9 @@
<!ELEMENT variables (variable*)>
<!ELEMENT variable EMPTY>
<!ELEMENT modules (module*)>
<!ELEMENT module EMPTY>
<!ELEMENT includes (include*)>
<!ELEMENT exceptions (exception*)>
@@ -104,6 +107,11 @@ alt_unit CDATA #IMPLIED
alt_unit_coef CDATA #IMPLIED
values CDATA #IMPLIED>
<!ATTLIST modules>
<!ATTLIST module
name CDATA #REQUIRED
type CDATA #IMPLIED>
<!ATTLIST blocks>