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.master
parent
5928b5e443
commit
d8227522cd
|
@ -44,7 +44,7 @@ public:
|
|||
|
||||
|
||||
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 New Issue