microbit: Increased maximum characteristic count
ble-nrf51822 assumes a static maximum of 20 characteristics by default. This is too small for the default micro:bit profile requires more than this. default raised to 30 to accomodate.
This commit is contained in:
parent
031aeec3af
commit
001abe5262
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ public:
|
|||
void hwCallback(ble_evt_t *p_ble_evt);
|
||||
|
||||
private:
|
||||
const static unsigned BLE_TOTAL_CHARACTERISTICS = 20;
|
||||
const static unsigned BLE_TOTAL_CHARACTERISTICS = 30;
|
||||
const static unsigned BLE_TOTAL_DESCRIPTORS = 8;
|
||||
|
||||
private:
|
||||
|
|
Loading…
Reference in a new issue