mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-30 08:24:11 +01:00
11 lines
177 B
C
11 lines
177 B
C
|
#ifndef PIOS_BOARD_H_
|
||
|
#define PIOS_BOARD_H_
|
||
|
|
||
|
#ifdef USE_SIM_POSIX
|
||
|
#include "sim_posix.h"
|
||
|
#else
|
||
|
#error Board definition has not been provided.
|
||
|
#endif
|
||
|
|
||
|
#endif /* PIOS_BOARD_H_ */
|