Add __PX4_POSIX_BEBOP define to PreflightCheck.cpp

This commit is contained in:
Michael Schaeuble
2016-10-18 15:10:37 +02:00
committed by Lorenz Meier
parent 2c23aa4348
commit 062df05865

View File

@@ -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;