Skip to content
Snippets Groups Projects
Commit 43e0186e authored by Lorenz Meier's avatar Lorenz Meier
Browse files

Commander: Space out MAVLink log messages more

parent a052907c
No related branches found
No related tags found
No related merge requests found
......@@ -123,17 +123,17 @@ bool calibrate_cancel_check(orb_advert_t *mavlink_log_pub, ///< uORB handle to w
#define calibration_log_info(_pub, _text, ...) \
do { \
mavlink_and_console_log_info(_pub, _text, ##__VA_ARGS__); \
usleep(5000); \
usleep(10000); \
} while(0);
#define calibration_log_critical(_pub, _text, ...) \
do { \
mavlink_and_console_log_critical(_pub, _text, ##__VA_ARGS__); \
usleep(5000); \
usleep(10000); \
} while(0);
#define calibration_log_emergency(_pub, _text, ...) \
do { \
mavlink_and_console_log_emergency(_pub, _text, ##__VA_ARGS__); \
usleep(5000); \
usleep(10000); \
} while(0);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment