diff options
| author | JF002 <JF002@users.noreply.github.com> | 2020-05-16 14:15:38 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-16 14:15:38 (GMT) |
| commit | d58f57b1b5a616debf893f209f1d96cac101489e (patch) | |
| tree | 9df19606a2615586bb533d39fb42c84be8774092 /src/libs/mynewt-nimble/docs/ble_hs/ble_att.rst | |
| parent | 24a1f87a78584d3b67f07ea7972ea0d8e1f8167c (diff) | |
| parent | d6c6ac4cf5801e17caf7bfc0878423703ed0413b (diff) | |
Merge pull request #30 from JF002/nimble
Nimble
Diffstat (limited to 'src/libs/mynewt-nimble/docs/ble_hs/ble_att.rst')
| -rw-r--r-- | src/libs/mynewt-nimble/docs/ble_hs/ble_att.rst | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/libs/mynewt-nimble/docs/ble_hs/ble_att.rst b/src/libs/mynewt-nimble/docs/ble_hs/ble_att.rst new file mode 100644 index 0000000..2025784 --- /dev/null +++ b/src/libs/mynewt-nimble/docs/ble_hs/ble_att.rst @@ -0,0 +1,22 @@ +NimBLE Host ATT Client Reference +-------------------------------- + +Introduction +~~~~~~~~~~~~ + +The Attribute Protocol (ATT) is a mid-level protocol that all BLE devices use to exchange data. Data is exchanged when +an ATT client reads or writes an attribute belonging to an ATT server. Any device that needs to send or receive data +must support both the client and server functionality of the ATT protocol. The only devices which do not support ATT +are the most basic ones: broadcasters and observers (i.e., beaconing devices and listening devices). + +Most ATT functionality is not interesting to an application. Rather than use ATT directly, an application uses the +higher level GATT profile, which sits directly above ATT in the host. NimBLE exposes the few bits of ATT functionality +which are not encompassed by higher level GATT functions. This section documents the ATT functionality that the NimBLE +host exposes to the application. + +API +~~~~~~ + +.. doxygengroup:: bt_host + :content-only: + :members: |
