delete px4_includes.h header and update boards/ to use syslog

This commit is contained in:
Daniel Agar
2019-01-22 11:23:29 -05:00
parent 376e078c24
commit 2ffb49b734
86 changed files with 190 additions and 563 deletions
+6 -5
View File
@@ -31,13 +31,16 @@
*
****************************************************************************/
#include <errno.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <cmath>
#include <px4_tasks.h>
#include <px4_getopt.h>
#include <px4_posix.h>
#include <errno.h>
#include <cmath> // NAN
#include <uORB/uORB.h>
#include <uORB/topics/actuator_controls.h>
@@ -461,8 +464,6 @@ void task_main_trampoline(int argc, char *argv[])
void start()
{
ASSERT(_task_handle == -1);
_task_should_exit = false;
/* start the task */
@@ -474,7 +475,7 @@ void start()
nullptr);
if (_task_handle < 0) {
warn("task start failed");
PX4_ERR("task start failed");
return;
}