Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ardupilot: added MCU_STATUS message #224

Merged
merged 1 commit into from
Aug 24, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions message_definitions/v1.0/ardupilotmega.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1736,5 +1736,13 @@
<field type="float" name="distance" units="m">Distance (uncorrected)</field>
<field type="float" name="temperature" units="degC">Water temperature</field>
</message>
<message id="11039" name="MCU_STATUS">
<description>The MCU status, giving MCU temperature and voltage. The min and max voltages are to allow for detecting power supply instability.</description>
<field type="uint8_t" name="id" instance="true">MCU instance</field>
<field type="int16_t" name="MCU_temperature" units="cdegC">MCU Internal temperature</field>
<field type="uint16_t" name="MCU_voltage" units="mV">MCU voltage</field>
<field type="uint16_t" name="MCU_voltage_min" units="mV">MCU voltage minimum</field>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<field type="uint16_t" name="MCU_voltage_min" units="mV">MCU voltage minimum</field>
<field type="uint16_t" name="MCU_voltage_min" units="mV">Minimum voltage measured</field>

<field type="uint16_t" name="MCU_voltage_max" units="mV">MCU voltage maximum</field>
</message>
</messages>
</mavlink>