From 33fdb072df33b204600b4eb3d64b144d287c2829 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beat=20K=C3=BCng?= Date: Thu, 1 Sep 2016 09:00:55 +0200 Subject: [PATCH] uORBMain: disable message logging to the ulog on Snapdragon --- src/modules/uORB/uORBMain.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/modules/uORB/uORBMain.cpp b/src/modules/uORB/uORBMain.cpp index 32730c3fbc..af4fdf53db 100644 --- a/src/modules/uORB/uORBMain.cpp +++ b/src/modules/uORB/uORBMain.cpp @@ -79,7 +79,12 @@ uorb_main(int argc, char *argv[]) return -errno; } +#if !defined(__PX4_QURT) && !defined(__PX4_POSIX_EAGLE) + /* FIXME: this fails on Snapdragon (see https://github.com/PX4/Firmware/issues/5406), + * so we disable logging messages to the ulog for now. This needs further investigations. + */ px4_log_initialize(); +#endif return OK; }