fix BLE_CONNECTABLE_FEATURE macro

pull/9790/head
paul-szczepanek-arm 2019-02-07 15:51:14 +00:00 committed by Vincent Coubard
parent 5a97706aab
commit dc3aba181e
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
#error "BLE requires at least one role 'BROADCASTER' or 'OBSERVER' to be enabled" #error "BLE requires at least one role 'BROADCASTER' or 'OBSERVER' to be enabled"
#endif #endif
#if BLE_ROLE_PERIPHERAL BLE_ROLE_CENTRAL) #if (BLE_ROLE_PERIPHERAL) || (BLE_ROLE_CENTRAL)
#define BLE_FEATURE_CONNECTABLE 1 #define BLE_FEATURE_CONNECTABLE 1
#endif #endif