mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-02 10:24:11 +01:00
25 lines
569 B
C
25 lines
569 B
C
#ifndef PIOS_BOARD_H_
|
|
#define PIOS_BOARD_H_
|
|
|
|
#ifdef USE_STM3210E_OP
|
|
#include "STM3210E_OP.h"
|
|
#elif USE_STM32103CB_PIPXTREME
|
|
#include "STM32103CB_PIPXTREME_Rev1.h"
|
|
#elif USE_STM32103CB_CC_Rev1
|
|
#include "STM32103CB_CC_Rev1.h"
|
|
#elif USE_STM32F2xx_INS
|
|
#include "STM32F2xx_INS.h"
|
|
#elif USE_STM32F4xx_OP
|
|
#include "STM32F4xx_Revolution.h"
|
|
#elif USE_STM32F4xx_OSD
|
|
#include "STM32F4xx_OSD.h"
|
|
#elif USE_STM32F4xx_RM
|
|
#include "STM32F4xx_RevoMini.h"
|
|
#elif USE_SIM_POSIX
|
|
#include "sim_posix.h"
|
|
#else
|
|
#error Board definition has not been provided.
|
|
#endif
|
|
|
|
#endif /* PIOS_BOARD_H_ */
|