1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-25 14:54:16 +01:00
LibrePilot/flight/PiOS/Boards/pios_board.h

21 lines
467 B
C
Raw Normal View History

#ifndef PIOS_BOARD_H
#define PIOS_BOARD_H
#if USE_STM32103CB_CC_Rev1
#include "STM32103CB_CC_Rev1.h"
2013-04-13 00:24:30 +03:00
#elif USE_STM32103CB_OPLINKMINI
#include "STM32103CB_OPLinkMini_Rev1.h"
#elif USE_STM32F4xx_RM
#include "STM32F4xx_RevoMini.h"
#elif USE_STM32F4xx_OSD
#include "STM32F4xx_OSD.h"
#elif USE_STM32F4xx_OP
2013-04-13 00:28:44 +02:00
#include "STM32F4xx_SensorTest.h"
#elif USE_SIM_POSIX
#include "sim_posix.h"
#else
#error Board definition has not been provided.
#endif
#endif /* PIOS_BOARD_H */