Always publish RC data from Pixhawk

This commit is contained in:
Lorenz Meier 2015-09-20 17:48:35 +02:00
parent 9778ed30d7
commit 9eb748ed5b
1 changed files with 1 additions and 1 deletions

View File

@ -543,7 +543,7 @@ void Simulator::pollForMAVLinkMessages(bool publish)
for (int i = 0; i < len; ++i) {
if (mavlink_parse_char(MAVLINK_COMM_0, serial_buf[i], &msg, &status)) {
// have a message, handle it
handle_message(&msg, publish);
handle_message(&msg, true);
}
}
}