2013-04-14 01:34:43 +02:00
|
|
|
/*
|
|
|
|
* Generic pios_board.h header.
|
|
|
|
* There is no #ifdef guard here since only one of headers should be included.
|
|
|
|
* All they share the same guard define to prevent double inclusion.
|
|
|
|
*/
|
2011-01-14 01:38:24 +00:00
|
|
|
|
2013-04-13 00:25:18 +03:00
|
|
|
#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"
|
2012-08-25 12:57:50 -05:00
|
|
|
#elif USE_STM32F4xx_RM
|
2013-04-14 01:34:43 +02:00
|
|
|
#include "STM32F4xx_Revolution.h"
|
2013-04-13 00:25:18 +03:00
|
|
|
#elif USE_STM32F4xx_OSD
|
|
|
|
#include "STM32F4xx_OSD.h"
|
|
|
|
#elif USE_STM32F4xx_OP
|
2013-04-13 00:28:44 +02:00
|
|
|
#include "STM32F4xx_SensorTest.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
|