ArduPlane: Remove i2c lockup count

This was returned only for a single bus and on all supported platforms
this is hardcoded to 0.
This commit is contained in:
Lucas De Marchi 2016-07-22 14:36:26 -03:00
parent c0b49f6aeb
commit c27ebd10c2

View File

@ -468,7 +468,7 @@ void Plane::send_hwstatus(mavlink_channel_t chan)
mavlink_msg_hwstatus_send(
chan,
hal.analogin->board_voltage()*1000,
hal.i2c->lockup_count());
0);
}
void Plane::send_wind(mavlink_channel_t chan)