Skip to content
Snippets Groups Projects
Commit 062df058 authored by Michael Schaeuble's avatar Michael Schaeuble Committed by Lorenz Meier
Browse files

Add __PX4_POSIX_BEBOP define to PreflightCheck.cpp

parent 2c23aa43
No related branches found
No related tags found
No related merge requests found
......@@ -394,6 +394,9 @@ bool preflightCheck(orb_advert_t *mavlink_log_pub, bool checkMag, bool checkAcc,
#elif defined(__PX4_POSIX_RPI)
PX4_WARN("Preflight checks always pass on RPI.");
return true;
#elif defined(__PX4_POSIX_BEBOP)
PX4_WARN("Preflight checks always pass on Bebop.");
return true;
#endif
bool failed = false;
......
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