Track NuttX syslog change

This commit is contained in:
David Sidrane
2021-06-01 13:20:06 -07:00
committed by Julian Oes
parent 028ae9561d
commit 05bdef867d
63 changed files with 78 additions and 1 deletions

View File

@@ -41,6 +41,8 @@
#include <sched.h>
#include <stdlib.h>
#include <assert.h>
#include <debug.h>
#include <syslog.h>
#ifdef CONFIG_HAVE_CXXINITIALIZE
#include "cxx_init.h"

View File

@@ -54,6 +54,7 @@
#include "arm_internal.h"
#include <systemlib/hardfault_log.h>
#include "nvic.h"
#include <syslog.h>
#if defined(CONFIG_STM32F7_BBSRAM) && defined(CONFIG_STM32F7_SAVE_CRASHDUMP)
# define HAS_BBSRAM CONFIG_STM32F7_BBSRAM

View File

@@ -36,6 +36,7 @@
*
* Serial interface for PX4IO on STM32F4
*/
#include <syslog.h>
#include <px4_arch/px4io_serial.h>

View File

@@ -37,6 +37,8 @@
* Serial interface for PX4IO on STM32F7
*/
#include <syslog.h>
#include <px4_arch/px4io_serial.h>
#include "stm32_uart.h"

View File

@@ -37,8 +37,9 @@
* Serial interface for PX4IO on STM32F7
*/
#include <px4_arch/px4io_serial.h>
#include <syslog.h>
#include <px4_arch/px4io_serial.h>
#include "stm32_uart.h"
#include <nuttx/cache.h>