uORBMain: disable message logging to the ulog on Snapdragon

This commit is contained in:
Beat Küng 2016-09-01 09:00:55 +02:00
parent 48a94e3570
commit 33fdb072df
1 changed files with 5 additions and 0 deletions

View File

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