mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-01 09:24:10 +01:00
18 lines
294 B
C
18 lines
294 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
|
|
#include "pios_mem.h"
|
|
#ifdef PIOS_INCLUDE_FLASH
|
|
#include <pios_flash.h>
|
|
#include <pios_flashfs.h>
|
|
#endif
|
|
|
|
#endif /* PIOS_H */
|