Added checks on compilation flags.

pull/185/head
tkuyucu 2014-02-20 12:43:06 +01:00
parent 3b702158ae
commit 2ec518a249
1 changed files with 6 additions and 0 deletions

View File

@ -4,8 +4,14 @@
/* There are no global defines in mbed, so we need to define */
/* mandatory conditional compilation flags here */
//#define NRF51
#ifndef DEBUG_NRF_USER
#define DEBUG_NRF_USER
#endif
#ifndef BLE_STACK_SUPPORT_REQD
#define BLE_STACK_SUPPORT_REQD
#endif
#ifndef BOARD_PCA10001
#define BOARD_PCA10001
#endif
#endif