mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-30 08:24:11 +01:00
99e61dd617
Conflicts: flight/pios/common/pios_flashfs_logfs.c flight/pios/inc/pios_flashfs_logfs_priv.h flight/tests/logfs/pios.h flight/tests/logfs/pios_config.h flight/tests/logfs/unittest.cpp
18 lines
273 B
C
18 lines
273 B
C
#ifndef PIOS_H
|
|
#define PIOS_H
|
|
|
|
/* PIOS Feature Selection */
|
|
#include "pios_config.h"
|
|
|
|
#ifdef PIOS_INCLUDE_FREERTOS
|
|
/* FreeRTOS Includes */
|
|
#include "FreeRTOS.h"
|
|
#endif
|
|
|
|
#ifdef PIOS_INCLUDE_FLASH
|
|
#include <pios_flash.h>
|
|
#include <pios_flashfs.h>
|
|
#endif
|
|
|
|
#endif /* PIOS_H */
|