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:
Joe Finney 2015-12-10 17:23:30 +00:00
parent 5928b5e443
commit d8227522cd
1 changed files with 1 additions and 1 deletions

View File

@ -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: