mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-02 10:24:11 +01:00
13 lines
205 B
C
13 lines
205 B
C
#ifndef PIOS_H
|
|
#define PIOS_H
|
|
|
|
/* PIOS board specific feature selection */
|
|
#include "pios_config.h"
|
|
|
|
#ifdef PIOS_INCLUDE_FLASH
|
|
#include <pios_flash.h>
|
|
#include <pios_flashfs.h>
|
|
#endif
|
|
|
|
#endif /* PIOS_H */
|