docs: fix typo gatt server properties

This commit is contained in:
Matthias Ringwald 2017-04-11 17:52:07 +02:00
parent 6401061a3c
commit 68b642b5ca

View File

@ -420,8 +420,8 @@ The current format is shown in Listing [below](#lst:GATTServerProfile).
...
~~~~
Properties can be a list of READ $|$ WRITE $|$ WRITE_WITHOUT_RESPONSE
$|$ NOTIFY $|$ INDICATE $|$ DYNAMIC.
Properties can be a list of READ | WRITE | WRITE_WITHOUT_RESPONSE
| NOTIFY | INDICATE | DYNAMIC.
Value can either be a string (“this is a string”), or, a sequence of hex
bytes (e.g. 01 02 03).
@ -537,4 +537,3 @@ In addition to the attribute value handle, the handle for the Client Characteris
Finally, in order to send Notifications and Indications independently from the main application, *att_server_register_can_send_now_callback* can be used to request a callback when it's possible to send a Notification or Indication.
To see how this works together, please check out the Battery Service Server in *src/ble/battery_service_server.c*.