Browse Source

mavlink: spaces replaced with tabs

sbg
Anton Babushkin 11 years ago
parent
commit
9e5c94b41e
  1. 8
      src/modules/mavlink/mavlink_messages.cpp

8
src/modules/mavlink/mavlink_messages.cpp

@ -228,13 +228,13 @@ protected: @@ -228,13 +228,13 @@ protected:
/* always send the heartbeat, independent of the update status of the topics */
if (!status_sub->update(&status)) {
/* if topic update failed fill it with defaults */
memset(&status, 0, sizeof(status));
/* if topic update failed fill it with defaults */
memset(&status, 0, sizeof(status));
}
if (!pos_sp_triplet_sub->update(&pos_sp_triplet)) {
/* if topic update failed fill it with defaults */
memset(&pos_sp_triplet, 0, sizeof(pos_sp_triplet));
/* if topic update failed fill it with defaults */
memset(&pos_sp_triplet, 0, sizeof(pos_sp_triplet));
}
uint8_t mavlink_state = 0;

Loading…
Cancel
Save