Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of nRF51822 by
Diff: btle/custom/custom_helper.cpp
- Revision:
- 84:658e5ec772a1
- Parent:
- 83:71302acf1804
- Child:
- 85:17fe69405098
diff -r 71302acf1804 -r 658e5ec772a1 btle/custom/custom_helper.cpp --- a/btle/custom/custom_helper.cpp Fri Dec 12 13:23:18 2014 +0000 +++ b/btle/custom/custom_helper.cpp Fri Dec 12 14:15:16 2014 +0000 @@ -214,10 +214,10 @@ (char_props.notify || char_props.indicate) ? &cccd_md : NULL; /* Attribute declaration */ - ble_gatts_attr_md_t attr_md = { - .rd_auth = readAuthorization, - .wr_auth = writeAuthorization, - }; + ble_gatts_attr_md_t attr_md = {0}; + + attr_md.rd_auth = readAuthorization; + attr_md.wr_auth = writeAuthorization; attr_md.vloc = BLE_GATTS_VLOC_STACK; attr_md.vlen = (min_length == max_length) ? 0 : 1;