2011-01-14 01:38:24 +00:00
|
|
|
#ifndef PIOS_BOARD_H_
|
|
|
|
#define PIOS_BOARD_H_
|
|
|
|
|
2013-03-15 08:20:01 +02:00
|
|
|
#ifdef USE_STM3210E_OP
|
2011-01-14 01:38:24 +00:00
|
|
|
#include "STM3210E_OP.h"
|
|
|
|
#elif USE_STM32103CB_PIPXTREME
|
|
|
|
#include "STM32103CB_PIPXTREME_Rev1.h"
|
2011-01-14 01:38:39 +00:00
|
|
|
#elif USE_STM32103CB_CC_Rev1
|
|
|
|
#include "STM32103CB_CC_Rev1.h"
|
2011-08-06 20:40:06 -05:00
|
|
|
#elif USE_STM32F2xx_INS
|
|
|
|
#include "STM32F2xx_INS.h"
|
2011-11-01 03:22:19 -05:00
|
|
|
#elif USE_STM32F4xx_OP
|
|
|
|
#include "STM32F4xx_Revolution.h"
|
2012-02-12 22:29:42 +02:00
|
|
|
#elif USE_STM32F4xx_OSD
|
|
|
|
#include "STM32F4xx_OSD.h"
|
2012-08-25 12:57:50 -05:00
|
|
|
#elif USE_STM32F4xx_RM
|
|
|
|
#include "STM32F4xx_RevoMini.h"
|
2013-02-24 18:33:29 +01:00
|
|
|
#elif USE_SIM_POSIX
|
|
|
|
#include "sim_posix.h"
|
2011-03-26 12:39:44 +00:00
|
|
|
#else
|
|
|
|
#error Board definition has not been provided.
|
2011-01-14 01:38:24 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* PIOS_BOARD_H_ */
|