Fix MAVLink subscription

This commit is contained in:
Lorenz Meier 2016-08-28 15:12:03 +02:00
parent 8dc8ae7de8
commit 15e50b26dc

View File

@ -170,6 +170,9 @@ MavlinkOrbSubscription::is_published()
// If it does not exist its not published
if (orb_exists(_topic, _instance)) {
return false;
} else if (_fd < 0) {
_fd = orb_subscribe_multi(_topic, _instance);
}
bool updated;