Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/modules/ekf2/EKF2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,7 @@ void EKF2::AdvertiseTopics()
_estimator_sensor_bias_pub.advertise();
_estimator_status_pub.advertise();
_estimator_status_flags_pub.advertise();
_estimator_fc_pub.advertise();

if (_multi_mode) {
// only force advertise these in multi mode to ensure consistent uORB instance numbering
Expand Down
6 changes: 6 additions & 0 deletions src/modules/mavlink/mavlink_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2006,6 +2006,9 @@ Mavlink::configure_streams_to_default(const char *configure_single_stream)
configure_stream_local("CAMERA_IMAGE_CAPTURED", unlimited_rate);
configure_stream_local("CURRENT_MODE", 0.5f);
configure_stream_local("ESTIMATOR_STATUS", 1.0f);
#if defined(MAVLINK_MSG_ID_ESTIMATOR_SENSOR_FUSION_STATUS)
configure_stream_local("ESTIMATOR_SENSOR_FUSION_STATUS", 1.0f);
#endif
configure_stream_local("EXTENDED_SYS_STATE", 1.0f);
configure_stream_local("GLOBAL_POSITION_SENSOR", 10.0f);
configure_stream_local("GLOBAL_POSITION_INT", 10.0f);
Expand Down Expand Up @@ -2073,6 +2076,9 @@ Mavlink::configure_streams_to_default(const char *configure_single_stream)
configure_stream_local("CAMERA_IMAGE_CAPTURED", 2.0f);
configure_stream_local("CURRENT_MODE", 0.5f);
configure_stream_local("ESTIMATOR_STATUS", 1.0f);
#if defined(MAVLINK_MSG_ID_ESTIMATOR_SENSOR_FUSION_STATUS)
configure_stream_local("ESTIMATOR_SENSOR_FUSION_STATUS", 1.0f);
#endif
configure_stream_local("EXTENDED_SYS_STATE", 0.5f);
configure_stream_local("GLOBAL_POSITION_INT", 2.0f);
configure_stream_local("GLOBAL_POSITION_SENSOR", 2.0f);
Expand Down
Loading