forked from Archive/PX4-Autopilot
mavlink: create stream even if rate is 0
This allows to send a message exactly once if requested.
This commit is contained in:
parent
bb032a9c46
commit
acdc15e2cd
|
@ -1266,11 +1266,6 @@ Mavlink::configure_stream(const char *stream_name, const float rate)
|
|||
}
|
||||
}
|
||||
|
||||
if (interval == 0) {
|
||||
/* stream was not active and is requested to be disabled, do nothing */
|
||||
return OK;
|
||||
}
|
||||
|
||||
// search for stream with specified name in supported streams list
|
||||
// create new instance if found
|
||||
MavlinkStream *stream = create_mavlink_stream(stream_name, this);
|
||||
|
|
Loading…
Reference in New Issue