mirror of
https://github.com/nasa/fprime.git
synced 2025-12-11 13:54:34 -06:00
Our XML files had incorrect schema paths, so they needed to be corrected or removed. Because of the upcoming transition to F'' YAML modeling, removing the schema refrences is an easier approach than correcting all component xml files.
22 lines
996 B
XML
22 lines
996 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<commands opcode_base="$OPCODEBASE">
|
|
<command kind="async" opcode="0" mnemonic="Flight Command Zero" size = "10">
|
|
<comment>Flight Command Zero executes very simple command.</comment>
|
|
</command>
|
|
<command kind = "sync" opcode="1" mnemonic="Flight Command One">
|
|
<comment>Flight Command One executes complex command.</comment>
|
|
<args>
|
|
<arg name="Throttle" type="I8" size="8" pass_by="reference" comment="Throttle Value">
|
|
<comment>Controls the throttle value.</comment>
|
|
</arg>
|
|
<arg name="Rotation" type = "ENUM">
|
|
<comment>Enum is missing here!</comment>
|
|
</arg>
|
|
<arg name="Display" type="string" size="15">
|
|
<comment>Message to pop up onto onboard flight 8 bit display.</comment>
|
|
</arg>
|
|
</args>
|
|
</command>
|
|
<command kind="async" opcode="2" mnemonic="Flight Command Two"></command>
|
|
</commands>
|