mirror of
https://github.com/nasa/fprime.git
synced 2025-12-11 22:23:25 -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.
26 lines
1.2 KiB
XML
26 lines
1.2 KiB
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">
|
|
<enum name="RotationValues">
|
|
<item name="Yaw" value="-1"></item>
|
|
<item name="Pitch" value = "0" comment = "Around y."/>
|
|
<item name = "Role" comment = "Around z."></item>
|
|
</enum>
|
|
</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-sync" opcode="2" mnemonic="Flight Command Two"></command>
|
|
</commands>
|