microbit: Remove restriction on GATT table size to permit larger profiles.

master
Joe Finney 2016-02-07 20:39:57 +00:00
parent 2541e8fdb0
commit 2b2a9d0fab
1 changed files with 1 additions and 2 deletions

View File

@ -104,8 +104,7 @@ error_t btle_init(void)
static const bool IS_SRVC_CHANGED_CHARACT_PRESENT = true;
ble_enable_params_t enableParams = {
.gatts_enable_params = {
.service_changed = IS_SRVC_CHANGED_CHARACT_PRESENT,
.attr_tab_size = 768
.service_changed = IS_SRVC_CHANGED_CHARACT_PRESENT
}
};
if (sd_ble_enable(&enableParams) != NRF_SUCCESS) {