mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-29 07:24:13 +01:00
14 lines
211 B
C
14 lines
211 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"
|
|
|
|
#endif /* PIOS_H */
|