docs: Move from mynewt-core

This commit is contained in:
Szymon Janc
2018-05-18 14:37:50 +02:00
parent 111d91a407
commit bd65300bb7
25 changed files with 2332 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
xml
node_modules
_build
doxygen_*
*.pyc
.doctrees
+25
View File
@@ -0,0 +1,25 @@
# Make a preview site for Sphinx & Doxygen output
SPHINXOPTS =
SPHINXBUILD = sphinx-build
SPHINXPROJ = Mynewt
SOURCEDIR = .
BUILDDIR = _build/sphinx
.PHONY: Makefile clean preview doxygen
clean:
rm -rf _build
preview: _build doxygen sphinx
_build:
mkdir -p _build
doxygen:
mkdir -p _build/html
cd .. && doxygen docs/doxygen.xml
sphinx:
sphinx-build . _build/sphinx
mv _build/sphinx _build/html/documentation
+35
View File
@@ -0,0 +1,35 @@
Mynewt Documentation
####################
This folder holds the documentation for the core OS of the
`Apache Mynewt`_ project. It is built using `Sphinx`_.
The source code also contains inline comments in `Doxygen`_
format to document the APIs.
The complete project documentation can be found at `mynewt documentation`_
.. contents::
Writing Documentation
=======================
See: https://github.com/apache/mynewt-documentation#writing-documentation
Previewing Changes
==========================
In order to preview any changes you make you must first install a Sphinx/Breathe/Doxygen toolchain as
described at https://github.com/apache/mynewt-documentation#id3. Then:
.. code-block:: bash
$ cd docs
$ make clean && make preview && (cd _build/html && python -m SimpleHTTPServer 8080)
.. _Apache Mynewt: https://mynewt.apache.org/
.. _mynewt documentation: https://github.com/apache/mynewt-documentation
.. _Sphinx: http://www.sphinx-doc.org/
.. _Doxygen: http://www.doxygen.org/
.. _Breathe: http://breathe.readthedocs.io/en/latest/
+22
View File
@@ -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.
Header
~~~~~~
.. code-block:: cpp
#include "host/ble_hs.h"
+14
View File
@@ -0,0 +1,14 @@
NimBLE Host GAP Reference
-------------------------
Introduction
~~~~~~~~~~~~
The Generic Access Profile (GAP) is responsible for all connecting, advertising, scanning, and connection updating operations.
Header
~~~~~~
.. code-block:: cpp
#include "host/ble_hs.h"
+15
View File
@@ -0,0 +1,15 @@
NimBLE Host GATT Client Reference
---------------------------------
Introduction
~~~~~~~~~~~~
The Generic Attribute Profile (GATT) manages all activities involving services, characteristics, and descriptors. The
client half of the GATT API initiates GATT procedures.
Header
~~~~~~
.. code-block:: cpp
#include "host/ble_hs.h"
+15
View File
@@ -0,0 +1,15 @@
NimBLE Host GATT Server Reference
---------------------------------
Introduction
~~~~~~~~~~~~
The Generic Attribute Profile (GATT) manages all activities involving services, characteristics, and descriptors. The
server half of the GATT API handles registration and responding to GATT clients.
Header
~~~~~~
.. code-block:: cpp
#include "host/ble_hs.h"
+27
View File
@@ -0,0 +1,27 @@
NimBLE Host
-----------
Introduction
~~~~~~~~~~~~
At a high level, the NimBLE stack is divided into two components:
- Host
- Controller
This document is an API reference for the host component. If you are
interested in the general structure of the NimBLE stack and its non-host
components, you might want to read the :doc:`../ble_intro`.
The host sits directly below the application, and it serves as the
interface to the application for all BLE operations.
.. toctree::
:titlesonly:
Return Codes <ble_hs_return_codes>
GAP <ble_gap>
GATT Client <ble_gattc>
GATT Server <ble_gatts>
Identity <ble_hs_id>
ATT <ble_att>
+45
View File
@@ -0,0 +1,45 @@
NimBLE Host Identity Reference
------------------------------
Introduction
~~~~~~~~~~~~
The identity API provides facilities for querying and configuring your device's addresses. BLE's addressing scheme is
quite involved; the summary that follows is only a brief introduction.
BLE defines four address types:
+---------------------------------+---------------------------------------------------------------------------------------------------+-------------+----------------------------------------------+
| Type | Description | Identity? | Configured with |
+=================================+===================================================================================================+=============+==============================================+
| Public | Address assigned by manufacturer; the three most significant bytes form the manufacturer's OUI. | Yes | N/A; read from controller at startup. |
+---------------------------------+---------------------------------------------------------------------------------------------------+-------------+----------------------------------------------+
| Static random | Randomly generated address. | Yes | *ble_hs_id_set_rnd()* |
+---------------------------------+---------------------------------------------------------------------------------------------------+-------------+----------------------------------------------+
| Resolvable private (RPA) | Address randomly generated from an identity address and an identity resolving key (IRK). | No | N/A; generated by controller periodically. |
+---------------------------------+---------------------------------------------------------------------------------------------------+-------------+----------------------------------------------+
| Non-resolvable private (NRPA) | Randomly generated address. | No | *ble_hs_id_set_rnd()* |
+---------------------------------+---------------------------------------------------------------------------------------------------+-------------+----------------------------------------------+
Identity Addresses
^^^^^^^^^^^^^^^^^^
The third column in the above table indicates the *identity* property of each address type. An identity address never
changes, and a device can be identified by one of its unique identity addresses.
Non-identity addresses are used by devices supporting BLE privacy. A device using the privacy feature frequently changes
its own address to a newly-generated non-identity address. By cycling its address, the device makes it impossible for
eavesdroppers to track its location.
A device can have up to two identity addresses at once: one public and one static random. As indicated in the above table,
the public identity address cannot be configured; the static random identity address can be set by calling *ble_hs_id_set_rnd()*.
The address type is selected on a per-GAP-procedure basis. Each time you initiate a GAP procedure, you indicate which
address type the device should use for the duration of the procedure.
Header
~~~~~~
.. code-block:: cpp
#include "host/ble_hs.h"
+437
View File
@@ -0,0 +1,437 @@
NimBLE Host Return Codes
------------------------
.. contents::
:local:
:depth: 2
Introduction
~~~~~~~~~~~~
Summary
^^^^^^^
The NimBLE host reports status to the application via a set of return codes. The host encompasses several layers of the Bluetooth specification that each defines its own set of status codes. Rather than "abstract away" information from lower layers that the application developer might find useful, the NimBLE host aims to indicate precisely what happened when something fails. Consequently, the host utilizes a rather large set of return codes.
A return code of 0 indicates success. For failure conditions, the return codes are partitioned into five separate sets:
+---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Set | Condition |
+===========================+=============================================================================================================================================================================================================+
| Core | Errors detected internally by the NimBLE host. |
+---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| ATT | The ATT server has reported a failure via the transmission of an ATT Error Response. The return code corresponds to the value of the Error Code field in the response. |
+---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| HCI | The controller has reported an error to the host via a command complete or command status HCI event. The return code corresponds to the value of the Status field in the event. |
+---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| L2CAP | An L2CAP signaling procedure has failed and an L2CAP Command Reject was sent as a result. The return code corresponds to the value of the Reason field in the command. |
+---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Security manager (us) | The host detected an error during a security manager procedure and sent a Pairing Failed command to the peer. The return code corresponds to the value of the Reason field in the Pairing Failed command. |
+---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Security manager (peer) | A security manager procedure failed because the peer sent us a Pairing Failed command. The return code corresponds to the value of the Reason field in the Pairing Failed command. |
+---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
The return codes in the core set are defined by the NimBLE Host. The other sets are defined in the Bluetooth specification; the codes in this latter group are referred to as *formal status codes*. As defined in the Bluetooth specification, the formal status code sets are not disjoint. That is, they overlap. For example, the spec defines a status code of 1 to have all of the following meanings:
+---------+----------------------------+
| Layer | Meaning |
+=========+============================+
| ATT | Invalid handle. |
+---------+----------------------------+
| HCI | Unknown HCI command. |
+---------+----------------------------+
| L2CAP | Signalling MTU exceeded. |
+---------+----------------------------+
| SM | Passkey entry failed. |
+---------+----------------------------+
Clearly, the host can't just return an unadorned formal status code and expect the application to make sense of it. To resolve this ambiguity, the NimBLE host divides the full range of an int into several subranges. Each subrange corresponds to one of the five return code sets. For example, the ATT set is mapped onto the subrange *[0x100, 0x200)*. To indicate an ATT error of 3 (write not permitted), the NimBLE host returns a value 0x103 to the application.
The host defines a set of convenience macros for converting from a formal status code to NimBLE host status code. These macros are documented in the table below.
+----------------------------+---------------------------+--------------+
| Macro | Status code set | Base value |
+============================+===========================+==============+
| BLE\_HS\_ATT\_ERR() | ATT | 0x100 |
+----------------------------+---------------------------+--------------+
| BLE\_HS\_HCI\_ERR() | HCI | 0x200 |
+----------------------------+---------------------------+--------------+
| BLE\_HS\_L2C\_ERR() | L2CAP | 0x300 |
+----------------------------+---------------------------+--------------+
| BLE\_HS\_SM\_US\_ERR() | Security manager (us) | 0x400 |
+----------------------------+---------------------------+--------------+
| BLE\_HS\_SM\_PEER\_ERR() | Security manager (peer) | 0x500 |
+----------------------------+---------------------------+--------------+
Example
^^^^^^^
The following example demonstrates how an application might determine which error is being reported by the host. In this example, the application performs the GAP encryption procedure and checks the return code. To simplify the example, the application uses a hypothetical *my\_blocking\_enc\_proc()* function, which blocks until the pairing operation has completed.
.. code:: c
void
encrypt_connection(uint16_t conn_handle)
{
int rc;
/* Perform a blocking GAP encryption procedure. */
rc = my_blocking_enc_proc(conn_handle);
switch (rc) {
case 0:
console_printf("success - link successfully encrypted\n");
break;
case BLE_HS_ENOTCONN:
console_printf("failure - no connection with handle %d\n",
conn_handle);
break;
case BLE_HS_ERR_SM_US_BASE(BLE_SM_ERR_CONFIRM_MISMATCH):
console_printf("failure - mismatch in peer's confirm and random "
"commands.\n");
break;
case BLE_HS_ERR_SM_PEER_BASE(BLE_SM_ERR_CONFIRM_MISMATCH):
console_printf("failure - peer reports mismatch in our confirm and "
"random commands.\n");
break;
default:
console_printf("failure - other error: 0x%04x\n", rc);
break;
}
}
Return Code Reference
~~~~~~~~~~~~~~~~~~~~~
Header
^^^^^^
All NimBLE host return codes are made accessible by including the following header:
.. code:: c
#include "host/ble_hs.h"
Return codes - Core
^^^^^^^^^^^^^^^^^^^
The precise meaning of each of these error codes depends on the function that returns it.
The API reference for a particular function indicates the conditions under which each of these codes are returned.
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| Value | Name | Condition |
+=========+==============================+=============================================================================================+
| 0x00 | *N/A* | Success |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x01 | BLE\_HS\_EAGAIN | Temporary failure; try again. |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x02 | BLE\_HS\_EALREADY | Operation already in progress or completed. |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x03 | BLE\_HS\_EINVAL | One or more arguments are invalid. |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x04 | BLE\_HS\_EMSGSIZE | The provided buffer is too small. |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x05 | BLE\_HS\_ENOENT | No entry matching the specified criteria. |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x06 | BLE\_HS\_ENOMEM | Operation failed due to resource exhaustion. |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x07 | BLE\_HS\_ENOTCONN | No open connection with the specified handle. |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x08 | BLE\_HS\_ENOTSUP | Operation disabled at compile time. |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x09 | BLE\_HS\_EAPP | Application callback behaved unexpectedly. |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x0a | BLE\_HS\_EBADDATA | Command from peer is invalid. |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x0b | BLE\_HS\_EOS | Mynewt OS error. |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x0c | BLE\_HS\_ECONTROLLER | Event from controller is invalid. |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x0d | BLE\_HS\_ETIMEOUT | Operation timed out. |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x0e | BLE\_HS\_EDONE | Operation completed successfully. |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x0f | BLE\_HS\_EBUSY | Operation cannot be performed until procedure completes. |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x10 | BLE\_HS\_EREJECT | Peer rejected a connection parameter update request. |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x11 | BLE\_HS\_EUNKNOWN | Unexpected failure; catch all. |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x12 | BLE\_HS\_EROLE | Operation requires different role (e.g., central vs. peripheral). |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x13 | BLE\_HS\_ETIMEOUT\_HCI | HCI request timed out; controller unresponsive. |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x14 | BLE\_HS\_ENOMEM\_EVT | Controller failed to send event due to memory exhaustion (combined host-controller only). |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x15 | BLE\_HS\_ENOADDR | Operation requires an identity address but none configured. |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x16 | BLE\_HS\_ENOTSYNCED | Attempt to use the host before it is synced with controller. |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x17 | BLE\_HS\_EAUTHEN | Insufficient authentication. |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x18 | BLE\_HS\_EAUTHOR | Insufficient authorization. |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x19 | BLE\_HS\_EENCRYPT | Insufficient encryption level. |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x1a | BLE\_HS\_EENCRYPT\_KEY\_SZ | Insufficient key size. |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x1b | BLE\_HS\_ESTORE\_CAP | Storage at capacity. |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
| 0x1c | BLE\_HS\_ESTORE\_FAIL | Storage IO error. |
+---------+------------------------------+---------------------------------------------------------------------------------------------+
Return codes - ATT
^^^^^^^^^^^^^^^^^^
+----------------+----------------+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| NimBLE Value | Formal Value | Name | Condition |
+================+================+============================================+===========================================================================================================================================+
| 0x0101 | 0x01 | BLE\_ATT\_ERR\_INVALID\_HANDLE | The attribute handle given was not valid on this server. |
+----------------+----------------+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x0102 | 0x02 | BLE\_ATT\_ERR\_READ\_NOT\_PERMITTED | The attribute cannot be read. |
+----------------+----------------+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x0103 | 0x03 | BLE\_ATT\_ERR\_WRITE\_NOT\_PERMITTED | The attribute cannot be written. |
+----------------+----------------+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x0104 | 0x04 | BLE\_ATT\_ERR\_INVALID\_PDU | The attribute PDU was invalid. |
+----------------+----------------+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x0105 | 0x05 | BLE\_ATT\_ERR\_INSUFFICIENT\_AUTHEN | The attribute requires authentication before it can be read or written. |
+----------------+----------------+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x0106 | 0x06 | BLE\_ATT\_ERR\_REQ\_NOT\_SUPPORTED | Attribute server does not support the request received from the client. |
+----------------+----------------+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x0107 | 0x07 | BLE\_ATT\_ERR\_INVALID\_OFFSET | Offset specified was past the end of the attribute. |
+----------------+----------------+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x0108 | 0x08 | BLE\_ATT\_ERR\_INSUFFICIENT\_AUTHOR | The attribute requires authorization before it can be read or written. |
+----------------+----------------+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x0109 | 0x09 | BLE\_ATT\_ERR\_PREPARE\_QUEUE\_FULL | Too many prepare writes have been queued. |
+----------------+----------------+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x010a | 0x0a | BLE\_ATT\_ERR\_ATTR\_NOT\_FOUND | No attribute found within the given attribute handle range. |
+----------------+----------------+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x010b | 0x0b | BLE\_ATT\_ERR\_ATTR\_NOT\_LONG | The attribute cannot be read or written using the Read Blob Request. |
+----------------+----------------+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x010c | 0x0c | BLE\_ATT\_ERR\_INSUFFICIENT\_KEY\_SZ | The Encryption Key Size used for encrypting this link is insufficient. |
+----------------+----------------+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x010d | 0x0d | BLE\_ATT\_ERR\_INVALID\_ATTR\_VALUE\_LEN | The attribute value length is invalid for the operation. |
+----------------+----------------+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x010e | 0x0e | BLE\_ATT\_ERR\_UNLIKELY | The attribute request that was requested has encountered an error that was unlikely, and therefore could not be completed as requested. |
+----------------+----------------+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x010f | 0x0f | BLE\_ATT\_ERR\_INSUFFICIENT\_ENC | The attribute requires encryption before it can be read or written. |
+----------------+----------------+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x0110 | 0x10 | BLE\_ATT\_ERR\_UNSUPPORTED\_GROUP | The attribute type is not a supported grouping attribute as defined by a higher layer specification. |
+----------------+----------------+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x0111 | 0x11 | BLE\_ATT\_ERR\_INSUFFICIENT\_RES | Insufficient Resources to complete the request. |
+----------------+----------------+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
Return codes - HCI
^^^^^^^^^^^^^^^^^^
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| NimBLE Value | Formal Value | Name | Condition |
+================+================+====================================+================================================================================+
| 0x0201 | 0x01 | BLE\_ERR\_UNKNOWN\_HCI\_CMD | Unknown HCI Command |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0202 | 0x02 | BLE\_ERR\_UNK\_CONN\_ID | Unknown Connection Identifier |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0203 | 0x03 | BLE\_ERR\_HW\_FAIL | Hardware Failure |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0204 | 0x04 | BLE\_ERR\_PAGE\_TMO | Page Timeout |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0205 | 0x05 | BLE\_ERR\_AUTH\_FAIL | Authentication Failure |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0206 | 0x06 | BLE\_ERR\_PINKEY\_MISSING | PIN or Key Missing |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0207 | 0x07 | BLE\_ERR\_MEM\_CAPACITY | Memory Capacity Exceeded |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0208 | 0x08 | BLE\_ERR\_CONN\_SPVN\_TMO | Connection Timeout |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0209 | 0x09 | BLE\_ERR\_CONN\_LIMIT | Connection Limit Exceeded |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x020a | 0x0a | BLE\_ERR\_SYNCH\_CONN\_LIMIT | Synchronous Connection Limit To A Device Exceeded |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x020b | 0x0b | BLE\_ERR\_ACL\_CONN\_EXISTS | ACL Connection Already Exists |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x020c | 0x0c | BLE\_ERR\_CMD\_DISALLOWED | Command Disallowed |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x020d | 0x0d | BLE\_ERR\_CONN\_REJ\_RESOURCES | Connection Rejected due to Limited Resources |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x020e | 0x0e | BLE\_ERR\_CONN\_REJ\_SECURITY | Connection Rejected Due To Security Reasons |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x020f | 0x0f | BLE\_ERR\_CONN\_REJ\_BD\_ADDR | Connection Rejected due to Unacceptable BD\_ADDR |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0210 | 0x10 | BLE\_ERR\_CONN\_ACCEPT\_TMO | Connection Accept Timeout Exceeded |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0211 | 0x11 | BLE\_ERR\_UNSUPPORTED | Unsupported Feature or Parameter Value |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0212 | 0x12 | BLE\_ERR\_INV\_HCI\_CMD\_PARMS | Invalid HCI Command Parameters |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0213 | 0x13 | BLE\_ERR\_REM\_USER\_CONN\_TERM | Remote User Terminated Connection |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0214 | 0x14 | BLE\_ERR\_RD\_CONN\_TERM\_RESRCS | Remote Device Terminated Connection due to Low Resources |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0215 | 0x15 | BLE\_ERR\_RD\_CONN\_TERM\_PWROFF | Remote Device Terminated Connection due to Power Off |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0216 | 0x16 | BLE\_ERR\_CONN\_TERM\_LOCAL | Connection Terminated By Local Host |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0217 | 0x17 | BLE\_ERR\_REPEATED\_ATTEMPTS | Repeated Attempts |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0218 | 0x18 | BLE\_ERR\_NO\_PAIRING | Pairing Not Allowed |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0219 | 0x19 | BLE\_ERR\_UNK\_LMP | Unknown LMP PDU |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x021a | 0x1a | BLE\_ERR\_UNSUPP\_REM\_FEATURE | Unsupported Remote Feature / Unsupported LMP Feature |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x021b | 0x1b | BLE\_ERR\_SCO\_OFFSET | SCO Offset Rejected |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x021c | 0x1c | BLE\_ERR\_SCO\_ITVL | SCO Interval Rejected |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x021d | 0x1d | BLE\_ERR\_SCO\_AIR\_MODE | SCO Air Mode Rejected |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x021e | 0x1e | BLE\_ERR\_INV\_LMP\_LL\_PARM | Invalid LMP Parameters / Invalid LL Parameters |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x021f | 0x1f | BLE\_ERR\_UNSPECIFIED | Unspecified Error |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0220 | 0x20 | BLE\_ERR\_UNSUPP\_LMP\_LL\_PARM | Unsupported LMP Parameter Value / Unsupported LL Parameter Value |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0221 | 0x21 | BLE\_ERR\_NO\_ROLE\_CHANGE | Role Change Not Allowed |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0222 | 0x22 | BLE\_ERR\_LMP\_LL\_RSP\_TMO | LMP Response Timeout / LL Response Timeout |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0223 | 0x23 | BLE\_ERR\_LMP\_COLLISION | LMP Error Transaction Collision |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0224 | 0x24 | BLE\_ERR\_LMP\_PDU | LMP PDU Not Allowed |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0225 | 0x25 | BLE\_ERR\_ENCRYPTION\_MODE | Encryption Mode Not Acceptable |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0226 | 0x26 | BLE\_ERR\_LINK\_KEY\_CHANGE | Link Key cannot be Changed |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0227 | 0x27 | BLE\_ERR\_UNSUPP\_QOS | Requested QoS Not Supported |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0228 | 0x28 | BLE\_ERR\_INSTANT\_PASSED | Instant Passed |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0229 | 0x29 | BLE\_ERR\_UNIT\_KEY\_PAIRING | Pairing With Unit Key Not Supported |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x022a | 0x2a | BLE\_ERR\_DIFF\_TRANS\_COLL | Different Transaction Collision |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x022c | 0x2c | BLE\_ERR\_QOS\_PARM | QoS Unacceptable Parameter |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x022d | 0x2d | BLE\_ERR\_QOS\_REJECTED | QoS Rejected |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x022e | 0x2e | BLE\_ERR\_CHAN\_CLASS | Channel Classification Not Supported |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x022f | 0x2f | BLE\_ERR\_INSUFFICIENT\_SEC | Insufficient Security |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0230 | 0x30 | BLE\_ERR\_PARM\_OUT\_OF\_RANGE | Parameter Out Of Mandatory Range |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0232 | 0x32 | BLE\_ERR\_PENDING\_ROLE\_SW | Role Switch Pending |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0234 | 0x34 | BLE\_ERR\_RESERVED\_SLOT | Reserved Slot Violation |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0235 | 0x35 | BLE\_ERR\_ROLE\_SW\_FAIL | Role Switch Failed |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0236 | 0x36 | BLE\_ERR\_INQ\_RSP\_TOO\_BIG | Extended Inquiry Response Too Large |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0237 | 0x37 | BLE\_ERR\_SEC\_SIMPLE\_PAIR | Secure Simple Pairing Not Supported By Host |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0238 | 0x38 | BLE\_ERR\_HOST\_BUSY\_PAIR | Host Busy - Pairing |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0239 | 0x39 | BLE\_ERR\_CONN\_REJ\_CHANNEL | Connection Rejected due to No Suitable Channel Found |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x023a | 0x3a | BLE\_ERR\_CTLR\_BUSY | Controller Busy |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x023b | 0x3b | BLE\_ERR\_CONN\_PARMS | Unacceptable Connection Parameters |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x023c | 0x3c | BLE\_ERR\_DIR\_ADV\_TMO | Directed Advertising Timeout |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x023d | 0x3d | BLE\_ERR\_CONN\_TERM\_MIC | Connection Terminated due to MIC Failure |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x023e | 0x3e | BLE\_ERR\_CONN\_ESTABLISHMENT | Connection Failed to be Established |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x023f | 0x3f | BLE\_ERR\_MAC\_CONN\_FAIL | MAC Connection Failed |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
| 0x0240 | 0x40 | BLE\_ERR\_COARSE\_CLK\_ADJ | Coarse Clock Adjustment Rejected but Will Try to Adjust Using Clock Dragging |
+----------------+----------------+------------------------------------+--------------------------------------------------------------------------------+
Return codes - L2CAP
^^^^^^^^^^^^^^^^^^^^
+----------------+----------------+----------------------------------------------+------------------------------------------------------+
| NimBLE Value | Formal Value | Name | Condition |
+================+================+==============================================+======================================================+
| 0x0300 | 0x00 | BLE\_L2CAP\_SIG\_ERR\_CMD\_NOT\_UNDERSTOOD | Invalid or unsupported incoming L2CAP sig command. |
+----------------+----------------+----------------------------------------------+------------------------------------------------------+
| 0x0301 | 0x01 | BLE\_L2CAP\_SIG\_ERR\_MTU\_EXCEEDED | Incoming packet too large. |
+----------------+----------------+----------------------------------------------+------------------------------------------------------+
| 0x0302 | 0x02 | BLE\_L2CAP\_SIG\_ERR\_INVALID\_CID | No channel with specified ID. |
+----------------+----------------+----------------------------------------------+------------------------------------------------------+
Return codes - Security manager (us)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| NimBLE Value | Formal Value | Name | Condition |
+================+================+===================================+===========================================================================================================================================+
| 0x0401 | 0x01 | BLE\_SM\_ERR\_PASSKEY | The user input of passkey failed, for example, the user cancelled the operation. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x0402 | 0x02 | BLE\_SM\_ERR\_OOB | The OOB data is not available. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x0403 | 0x03 | BLE\_SM\_ERR\_AUTHREQ | The pairing procedure cannot be performed as authentication requirements cannot be met due to IO capabilities of one or both devices. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x0404 | 0x04 | BLE\_SM\_ERR\_CONFIRM\_MISMATCH | The confirm value does not match the calculated compare value. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x0405 | 0x05 | BLE\_SM\_ERR\_PAIR\_NOT\_SUPP | Pairing is not supported by the device. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x0406 | 0x06 | BLE\_SM\_ERR\_ENC\_KEY\_SZ | The resultant encryption key size is insufficient for the security requirements of this device. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x0407 | 0x07 | BLE\_SM\_ERR\_CMD\_NOT\_SUPP | The SMP command received is not supported on this device. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x0408 | 0x08 | BLE\_SM\_ERR\_UNSPECIFIED | Pairing failed due to an unspecified reason. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x0409 | 0x09 | BLE\_SM\_ERR\_REPEATED | Pairing or authentication procedure is disallowed because too little time has elapsed since last pairing request or security request. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x040a | 0x0a | BLE\_SM\_ERR\_INVAL | The Invalid Parameters error code indicates that the command length is invalid or that a parameter is outside of the specified range. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x040b | 0x0b | BLE\_SM\_ERR\_DHKEY | Indicates to the remote device that the DHKey Check value received doesnt match the one calculated by the local device. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x040c | 0x0c | BLE\_SM\_ERR\_NUMCMP | Indicates that the confirm values in the numeric comparison protocol do not match. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x040d | 0x0d | BLE\_SM\_ERR\_ALREADY | Indicates that the pairing over the LE transport failed due to a Pairing Request sent over the BR/EDR transport in process. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x040e | 0x0e | BLE\_SM\_ERR\_CROSS\_TRANS | Indicates that the BR/EDR Link Key generated on the BR/EDR transport cannot be used to derive and distribute keys for the LE transport. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
Return codes - Security manager (peer)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| NimBLE Value | Formal Value | Name | Condition |
+================+================+===================================+===========================================================================================================================================+
| 0x0501 | 0x01 | BLE\_SM\_ERR\_PASSKEY | The user input of passkey failed, for example, the user cancelled the operation. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x0502 | 0x02 | BLE\_SM\_ERR\_OOB | The OOB data is not available. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x0503 | 0x03 | BLE\_SM\_ERR\_AUTHREQ | The pairing procedure cannot be performed as authentication requirements cannot be met due to IO capabilities of one or both devices. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x0504 | 0x04 | BLE\_SM\_ERR\_CONFIRM\_MISMATCH | The confirm value does not match the calculated compare value. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x0505 | 0x05 | BLE\_SM\_ERR\_PAIR\_NOT\_SUPP | Pairing is not supported by the device. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x0506 | 0x06 | BLE\_SM\_ERR\_ENC\_KEY\_SZ | The resultant encryption key size is insufficient for the security requirements of this device. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x0507 | 0x07 | BLE\_SM\_ERR\_CMD\_NOT\_SUPP | The SMP command received is not supported on this device. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x0508 | 0x08 | BLE\_SM\_ERR\_UNSPECIFIED | Pairing failed due to an unspecified reason. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x0509 | 0x09 | BLE\_SM\_ERR\_REPEATED | Pairing or authentication procedure is disallowed because too little time has elapsed since last pairing request or security request. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x050a | 0x0a | BLE\_SM\_ERR\_INVAL | The Invalid Parameters error code indicates that the command length is invalid or that a parameter is outside of the specified range. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x050b | 0x0b | BLE\_SM\_ERR\_DHKEY | Indicates to the remote device that the DHKey Check value received doesnt match the one calculated by the local device. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x050c | 0x0c | BLE\_SM\_ERR\_NUMCMP | Indicates that the confirm values in the numeric comparison protocol do not match. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x050d | 0x0d | BLE\_SM\_ERR\_ALREADY | Indicates that the pairing over the LE transport failed due to a Pairing Request sent over the BR/EDR transport in process. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
| 0x050e | 0x0e | BLE\_SM\_ERR\_CROSS\_TRANS | Indicates that the BR/EDR Link Key generated on the BR/EDR transport cannot be used to derive and distribute keys for the LE transport. |
+----------------+----------------+-----------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
+122
View File
@@ -0,0 +1,122 @@
BLE User Guide
----------------
Apache Mynewt offers the world's first fully open-source Bluetooth Low
Energy (BLE) or Bluetooth Smart stack fully compliant with Bluetooth 5
specifications with support for Bluetooth Mesh. It is called NimBLE.
BLE technology operates in the unlicensed industrial, scientific and
medical (ISM) band at 2.4 to 2.485 GHz which is available in most
countries. It uses a spread spectrum, frequency hopping, full-duplex
signal. BLE FHSS employs 40 2-MHz-wide channels to ensure greater
reliability over longer distances. It also features 0-dBm (1 mW) power
output and a typical maximum range of 50 meters. With Bluetooth 5
specification range can be increased 4 times and speed 2 time.
.. toctree::
:hidden:
:titlesonly:
ble_sec
ble_setup/ble_setup_intro
ble_hs/ble_hs
btshell Usage API <btshell/btshell_api>
mesh/index
.. contents::
:local:
:depth: 2
Note that BLE is not compatible with standard Bluetooth.
Features
~~~~~~~~
NimBLE complies with Bluetooth Core Specification 5.0 which makes it an
ideal wireless technology for the Internet of Things (IoT).
- LE Advertising Extensions
- 2Msym/s PHY for higher throughput
- Coded PHY for LE Long Range
- High Duty Cycle Non-Connectable Advertising
- Channel Selection Algorithm #2 to utilize channels in more efficient
way.
- LE Privacy 1.2 for frequent changes to the device address to make it
difficult to track for outsiders
- LE Secure Connections featuring FIPS-compliant algorithms.
- LE Data Length Extension for higher throughput
- **Coming Soon**: Assigning an Internet Protocol (IP) address
(complaint with the IPv6 or 6LoWPAN standard) to a Bluetooth device
through Internet Protocol Support Profile (IPSP)
The Bluetooth 5 is backward compatible with previous Bluetooth version
4.2 which is also supported by Apache Mynewt.
Bluetooth Mesh features
~~~~~~~~~~~~~~~~~~~~~~~
Bluetooth Mesh is a great addition to and opens a wide range of new
possibilities for the IoT connectivity space. NimBLE fully supports the
following Bluetooth Mesh features:
- Advertising and GATT bearers
- PB-GATT and PB-ADV provisioning
- Foundation Models (server role)
- Relay support
- GATT Proxy
Components
~~~~~~~~~~
A Bluetooth low energy stack (NimBLE included) consists of two
components with several subcomponents:
- **Controller**
- **Physical Layer**: adaptive frequency-hopping Gaussian Frequency
Shift Keying (GFSK) radio using 40 RF channels (0-39), with 2 MHz
spacing.
- **Link Layer**: with one of five states (Standby, Advertising,
Scanning, Initiating, Connection states) active at any time
- **Host**
- **Logical Link Control and Adaptation Protocol (L2CAP)**: provides
logical channels, named L2CAP channels, which are multiplexed over
one or more logical links to provide packet segmentation and
reassembly, flow control, error control, streaming, QoS etc.
- **Security Manager (SM)**: uses Security Manager Protocol (SMP)
for pairing and transport specific key distribution for securing
radio communication
- **Attribute protocol (ATT)**: allows a device (*Server*) to expose
certain pieces of data, known as *Attributes*, to another device
(*Client*)
- **Generic Attribute Profile (GATT)**: a framework for using the
ATT protocol to exchange attributes encapsulated as
*Characteristics* or *Services*
- **Generic Access Profile (GAP)**: a base profile which all
Bluetooth devices implement, which in the case of LE, defines the
Physical Layer, Link Layer, L2CAP, Security Manager, Attribute
Protocol and Generic Attribute Profile.
- **Host Controller Interface (HCI)**: the interface between the
host and controller either through software API or by a hardware
interface such as SPI, UART or USB.
Subsequent chapters in this manual will go into the details of the
implementation of each component, APIs available, and things to consider
while designing a NimBLE app.
Example NimBLE projects
~~~~~~~~~~~~~~~~~~~~~~~
Mynewt comes with two built-in projects that allow users to play with
NimBLE, try the tutorials out with, and see how to use available
services.
1. **bletiny** : A simple shell application which provides a basic
interface to the host-side of the BLE stack.
2. **bleprph**: A basic peripheral device with no user interface. It
advertises automatically on startup, and resumes advertising whenever
a connection is terminated. It supports a maximum of one connection.
3. **blemesh**: A sample application for Bluetooth Mesh Node using
on/off model.
+76
View File
@@ -0,0 +1,76 @@
NimBLE Security
---------------
The Bluetooth Low Energy security model includes five distinct security
concepts as listed below. For detailed specifications, see BLUETOOTH
SPECIFICATION Version 4.2 [Vol 1, Part A].
- **Pairing**: The process for creating one or more shared secret keys.
In LE a single link key is generated by combining contributions from
each device into a link key used during pairing.
- **Bonding**: The act of storing the keys created during pairing for
use in subsequent connections in order to form a trusted device pair.
- **Device authentication**: Verification that the two devices have the
same keys (verify device identity)
- **Encryption**: Keeps message confidential. Encryption in Bluetooth
LE uses AES-CCM cryptography and is performed in the *Controller*.
- **Message integrity**: Protects against message forgeries.
Bluetooth LE uses four association models depending on the I/O
capabilities of the devices.
- **Just Works**: designed for scenarios where at least one of the
devices does not have a display capable of displaying a six digit
number nor does it have a keyboard capable of entering six decimal
digits.
- **Numeric Comparison**: designed for scenarios where both devices are
capable of displaying a six digit number and both are capable of
having the user enter "yes" or "no". A good example of this model is
the cell phone / PC scenario.
- **Out of Band**: designed for scenarios where an Out of Band
mechanism is used to both discover the devices as well as to exchange
or transfer cryptographic numbers used in the pairing process.
- **Passkey Entry**: designed for the scenario where one device has
input capability but does not have the capability to display six
digits and the other device has output capabilities. A good example
of this model is the PC and keyboard scenario.
Key Generation
~~~~~~~~~~~~~~
Key generation for all purposes in Bluetooth LE is performed by the
*Host* on each LE device independent of any other LE device.
Privacy Feature
~~~~~~~~~~~~~~~
Bluetooth LE supports an optional feature during connection mode and
connection procedures that reduces the ability to track a LE device over
a period of time by changing the Bluetooth device address on a frequent
basis.
There are two variants of the privacy feature.
- In the first variant, private addresses are resolved and generated by
the *Host*.
- In the second variant, private addresses are resolved and generated
by the *Controller* without involving the Host after the Host
provides the Controller device identity information. The Host may
provide the Controller with a complete resolving list or a subset of
the resolving list. Device filtering becomes possible in the second
variant when address resolution is performed in the Controller
because the peers device identity address can be resolved prior to
checking whether it is in the white list.
**Note**: When address resolution is performed exclusively in the Host,
a device may experience increased power consumption because device
filtering must be disabled. For more details on the privacy feature,
refer to BLUETOOTH SPECIFICATION Version 4.2 [Vol 3, Part C] (Published
02 December 2014), Page 592.
+63
View File
@@ -0,0 +1,63 @@
Configure device address
------------------------
A BLE device needs an address to do just about anything. For information
on the various types of Bluetooth addresses, see the `NimBLE Host
Identity Reference :doc:`<../../../network/ble/ble_hs/ble_hs_id/ble_hs_id>`.
There are several methods for assigning an address to a NimBLE device.
The available options are documented below:
Method 1: Configure nRF hardware with a public address
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
When Mynewt is running on a Nordic nRF platform, the NimBLE controller
will attempt to read a public address out of the board's FICR or UICR
registers. The controller uses the following logic while trying to read
an address from hardware:
1. If the *DEVICEADDRTYPE* FICR register is written, read the address
programmed in the *DEVICEADDR[0]* and *DEVICEADDR[1]* FICR registers.
2. Else if the upper 16 bits of the *CUSTOMER[1]* UICR register are 0,
read the address programmed in the *CUSTOMER[0]* and *CUSTOMER[1]*
UCI registers.
3. Else, no address available.
Method 2: Hardcode a public address in the Mynewt target
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The NimBLE controller package exports a
:doc:`syscfg <../../../os/modules/sysinitconfig/sysinitconfig>` setting
called ``BLE_PUBLIC_DEV_ADDR``. This setting can be overridden at the
application or target level to configure a public Bluetooth address. For
example, a target can assign the public address *11:22:33:44:55:66* as
follows:
::
syscfg.vals:
BLE_PUBLIC_DEV_ADDR: '(uint8_t[6]){0x66, 0x55, 0x44, 0x33, 0x22, 0x11}'
This setting takes the form of a C expression. Specifically, the value
is a designated initializer expressing a six-byte array. Also note that
the bytes are reversed, as an array is inherently little-endian, while
addresses are generally expressed in big-endian.
Note: this method takes precedence over method 1. Whatever is written to
the ``BLE_PUBLIC_DEV_ADDR`` setting is the address that gets used.
Method 3: Configure a random address at runtime
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Random addresses get configured through the NimBLE host. The following
two functions are used in random address configuration:
- :doc:`ble_hs_id_gen_rnd <../../../network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_gen_rnd>`:
Generates a new random address.
- :doc:`ble_hs_id_set_rnd <../../../network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_set_rnd>`:
Sets the device's random address.
For an example of how this is done, see the :doc:`<../../../os/tutorials/ibeacon>`.
*Note:* A NimBLE device can be configured with multiple addresses; at
most one of each address type.
+67
View File
@@ -0,0 +1,67 @@
Configure clock for controller
------------------------------
The NimBLE stack uses OS cputime for scheduling various events inside
controller. Since the code of controller is optimized to work with 32768
Hz clock, the OS cputime has to be configured accordingly.
To make things easier, controller package (``net/nimble/controller``)
defines new system configuration setting ``BLE_LP_CLOCK`` as sets it to
``1`` so other packages can be configured if necessary. The next section
describes configuration required for controller to work properly.
System configuration
~~~~~~~~~~~~~~~~~~~~
**Note:** All BSPs based on nRF5x have below settings automatically
applied when ``BLE_LP_CLOCK`` is set, there is no need to configure this
in application.
The following things need to be configured for NimBLE controller to work
properly:
- OS cputime frequency shall be set to ``32768``
- OS cputime timer source shall be set to 32768 Hz clock source
- Default 1 MHz clock source can be disabled if not used by application
- 32768 Hz clock source shall be enabled
- Crystal settling time shall be set to non-zero value (see below)
For example, on nRF52 platform timer 5 can be used as source for 32768
Hz clock. Also, timer 0 can be disabled since this is the default source
for OS cputime clock and is no longer used. The configuration will look
as below:
::
syscfg.vals:
OS_CPUTIME_FREQ: 32768
OS_CPUTIME_TIMER_NUM: 5
TIMER_0: 0
TIMER_5: 1
BLE_XTAL_SETTLE_TIME: 1500
On nRF51 platform the only difference is to use timer 3 instead of timer
5.
On platforms without 32768 Hz crystal available it usually can be
synthesized by setting ``XTAL_32768_SYNTH`` to ``1`` - this is also
already configured in existing BSPs.
Crystal settle time configuration
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The configuration variable ``BLE_XTAL_SETTLE_TIME`` is used by the
controller to turn on the necessary clock source(s) for the radio and
associated peripherals prior to Bluetooth events (advertising, scanning,
connections, etc). For the nRF5x platforms, the HFXO needs to be turned
on prior to using the radio and the ``BLE_XTAL_SETTLE_TIME`` must be set
to accommodate this time. The amount of time required is board
dependent, so users must characterize their hardware and set
``BLE_XTAL_SETTLE_TIME`` accordingly. The current value of 1500
microseconds is a fairly long time and was intended to work for most, if
not all, platforms.
Note that changing this time will impact battery life with the amount
depending on the application. The HFXO draws a fairly large amount of
current when running so keeping this time as small as possible will
reduce overall current drain.
+13
View File
@@ -0,0 +1,13 @@
NimBLE Setup
------------
Most NimBLE initialization is done automatically by
:doc:`sysinit <../../../os/modules/sysinitconfig/sysinitconfig>`. This
section documents the few bits of initialization that an application
must perform manually.
.. toctree::
ble_lp_clock
ble_addr
ble_sync_cb
+80
View File
@@ -0,0 +1,80 @@
Respond to *sync* and *reset* events
------------------------------------
sync
~~~~
The NimBLE stack is inoperable while the host and controller are out of
sync. In a combined host-controller app, the sync happens immediately at
startup. When the host and controller are separate, sync typically
occurs in under a second after the application starts. An application
learns when sync is achieved by configuring the host's *sync callback*:
``ble_hs_cfg.sync_cb``. The host calls the sync callback whenever sync
is acquired. The sync callback has the following form:
.. code-block:: cpp
typedef void ble_hs_sync_fn(void);
Because the NimBLE stack begins in the unsynced state, the application
should delay all BLE operations until the sync callback has been called.
reset
~~~~~
Another event indicated by the host is a *controller reset*. The NimBLE
stack resets itself when a catastrophic error occurs, such as loss of
communication between the host and controller. Upon resetting, the host
drops all BLE connections and loses sync with the controller. After a
reset, the application should refrain from using the host until sync is
again signaled via the sync callback.
An application learns of a host reset by configuring the host's *reset
callback*: ``ble_hs_cfg.reset_cb``. This callback has the following
form:
.. code-block:: cpp
typedef void ble_hs_reset_fn(int reason);
The ``reason`` parameter is a :doc:`NimBLE host return
code <../../../network/ble/ble_hs/ble_hs_return_codes>`.
Example
~~~~~~~
The following example demonstrates the configuration of the sync and
reset callbacks.
.. code-block:: cpp
#include "sysinit/sysinit.h"
#include "console/console.h"
#include "host/ble_hs.h"
static void
on_sync(void)
{
/* Begin advertising, scanning for peripherals, etc. */
}
static void
on_reset(int reason)
{
console_printf("Resetting state; reason=%d\n", reason);
}
int
main(void)
{
/* Initialize all packages. */
sysinit();
ble_hs_cfg.sync_cb = on_sync;
ble_hs_cfg.reset_cb = on_reset;
/* As the last thing, process events from default event queue. */
while (1) {
os_eventq_run(os_eventq_dflt_get());
}
}
+660
View File
@@ -0,0 +1,660 @@
GAP API for btshell
===================
Generic Access Profile (GAP) defines the generic procedures related to discovery of Bluetooth devices (idle mode
procedures) and link management aspects of connecting to Bluetooth devices (connecting mode procedures). It also defines
procedures related to use of different security levels.
Several different modes and procedures may be performed simultaneously over an LE physical transport. The following
modes and procedures are defined for use over an LE physical transport:
1. **Broadcast mode and observation procedure**
- These allow two devices to communicate in a unidirectional connectionless manner using the advertising events.
2. **Discovery modes and procedures**
- All devices shall be in either non-discoverable mode or one of the discoverable modes.
- A device in the discoverable mode shall be in either the general discoverable mode or the limited discoverable mode.
- A device in non-discoverable mode will not be discovered by any device that is performing either the general
discovery procedure or the limited discovery procedure.
3. **Connection modes and procedures**
- allow a device to establish a connection to another device.
- allow updating of parameters of the connection
- allow termination of the connection
4. **Bonding modes and procedures**
- Bonding allows two connected devices to exchange and store security and identity information to create a trusted
relationship.
- Bonding can occur only between two devices in bondable mode.
Available commands
~~~~~~~~~~~~~~~~~~
Parameters default values are marked red.
Configuration
-------------
+---------------------+-----------------+----------------------------+---------------------------------------------------------------------------------------------------------+
| **Command** | **Parmeters** | \*\* Possible values\*\* | **Description** |
+=====================+=================+============================+=========================================================================================================+
| **set** | | | Set configuration options |
+---------------------+-----------------+----------------------------+---------------------------------------------------------------------------------------------------------+
| | addr | XX:XX:XX:XX:XX:XX | Local device address |
+---------------------+-----------------+----------------------------+---------------------------------------------------------------------------------------------------------+
| | addr\_type | ``public`` | Local device address type |
+---------------------+-----------------+----------------------------+---------------------------------------------------------------------------------------------------------+
| | | random | Use random address for scan requests |
+---------------------+-----------------+----------------------------+---------------------------------------------------------------------------------------------------------+
| | mtu | [23-UINT16\_MAX] | GATT Maximum Transmission Unit (MTU) |
+---------------------+-----------------+----------------------------+---------------------------------------------------------------------------------------------------------+
| | irk | XX:XX:XX... | Local Identity Resolving Key (16 byte |
+---------------------+-----------------+----------------------------+---------------------------------------------------------------------------------------------------------+
| **set-priv-mode** | | | Set privacy mode for device |
+---------------------+-----------------+----------------------------+---------------------------------------------------------------------------------------------------------+
| | addr | XX:XX:XX:XX:XX:XX | Remote device address |
+---------------------+-----------------+----------------------------+---------------------------------------------------------------------------------------------------------+
| | addr\_type | ``public`` | Remote device public address type |
+---------------------+-----------------+----------------------------+---------------------------------------------------------------------------------------------------------+
| | | random | Remote device random address type |
+---------------------+-----------------+----------------------------+---------------------------------------------------------------------------------------------------------+
| | mode | [``0``-1] | 0 - use network privacy, 1 - use device privacy |
+---------------------+-----------------+----------------------------+---------------------------------------------------------------------------------------------------------+
| **white-list** | | | Add devices to white list (this command accepts multiple instances of addr and addr\_type parameters) |
+---------------------+-----------------+----------------------------+---------------------------------------------------------------------------------------------------------+
| | addr | XX:XX:XX:XX:XX:XX | Remote device address |
+---------------------+-----------------+----------------------------+---------------------------------------------------------------------------------------------------------+
| | addr\_type | ``public`` | Remote device public address type |
+---------------------+-----------------+----------------------------+---------------------------------------------------------------------------------------------------------+
| | | random | Remote device random address type |
+---------------------+-----------------+----------------------------+---------------------------------------------------------------------------------------------------------+
Device discovery and connection
-------------------------------
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| **Command** | **Parmeters** | \*\* Possible values\*\* | **Description** |
+==========================+================================+============================+============================================================================================================+
| **scan** | | | Discover remote devices |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | cancel | | cancel ongoing scan procedure |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | extended | ``none`` | Start legacy scan |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | | 1M | Start extended scan on 1M PHY |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | | coded | Start extended scan on Coded PHY |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | | both | Start extended scan on both PHYs |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | duration | [1-``INT32_MAX``], | Duration of scan in milliseconds |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | limited | [``0``-1] | Use limited discovery procedure |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | passive | [``0``-1] | Use passive scan |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | interval | [``0``-UINT16\_MAX] | Scan interval, if 0 use stack's default |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | window | [``0``-UINT16\_MAX] | Scan window, if 0 use stack's default |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | filter | ``no_wl`` | Scan filter policy - Accept all advertising packets |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | | use\_wl | Accept only advertising packets from devices on White List |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | | no\_wl\_inita | Accept all advertising packets (including directed RPA) |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | | use\_wl\_inita | Accept only advertising packets from devices on White List (including directed RPA) |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | nodups | [``0``-1] | Disable duplicates filtering |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | own\_addr\_type | ``public`` | Use public address for scan requests |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | | random | Use random address for scan requests |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | | rpa\_pub | Use RPA address for scan requests (fallback to public if no IRK) |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | | rpa\_rnd | Use RPA address for scan requests (fallback to random if no IRK) |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | extended\_duration | [``0``-UINT16\_MAX] | Duration of extended scan in 10 milliseconds |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | extended\_period | [``0``-UINT16\_MAX] | Periodic scan interval in 1.28 seconds (0 disabled) |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | longrange\_interval | [``0``-UINT16\_MAX] | Scan interval for Coded Scan , if 0 use stack's default |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | longrange\_window | [``0``-UINT16\_MAX] | Scan window for Coded Scan , if 0 use stack's default |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | longrange\_passive | [``0``-1] | Use passive scan for Coded Scan |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| **connect** | | | Initiate connection to remote device |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | cancel | | Cancel ongoing connection procedure |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | extended | ``none`` | Use legacy connection procedure |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | | 1M | Extended connect using 1M PHY scan parameters |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | | coded | Extended connect using Coded PHY scan parameters |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | | both | Extended connect using 1M and Coded PHYs scan parameters |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | | all | Extended connect using 1M and Coded PHYs scan parameters (Provide also connection parameters for 2M PHY) |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | peer\_addr\_type | ``public`` | Remote device public address type |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | | random | Remote device random address type |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | | public\_id | Remote device public address type (Identity) |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | | random\_id | Remote device random address type (Identity) |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | peer\_addr | XX:XX:XX:XX:XX:XX | Remote device address |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | own\_addr\_type | ``public`` | Use public address for scan requests |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | | random | Use random address for scan requests |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | | rpa\_pub | Use RPA address for scan requests (fallback to public if no IRK) |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | | rpa\_rnd | Use RPA address for scan requests (fallback to random if no IRK) |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | duration | [``0``-INT32\_MAX] | Connection attempt duration, if 0 use stack's default |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | scan\_interval | [0-UINT16\_MAX] | Scan interval, default: 0x0010 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | scan\_window | [0-UINT16\_MAX] | Scan window, default: 0x0010 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | interval\_min | [0-UINT16\_MAX] | Minimum connection interval, default: 30 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | interval\_max | [0-UINT16\_MAX] | Maximum connection interval, default: 50 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | latency | [UINT16] | Connection latency, default: 0 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | timeout | [UINT16] | Connection timeout, default: 0x0100 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | min\_conn\_event\_len | [UINT16] | Minimum length of connection event, default: 0x0010 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | max\_conn\_event\_len | [UINT16] | Maximum length of connection event, default: 0x0300 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | coded\_scan\_interval | [0-UINT16\_MAX] | Coded PHY Scan interval, default: 0x0010 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | coded\_scan\_window | [0-UINT16\_MAX] | Coded PHY Scan window, default: 0x0010 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | coded\_interval\_min | [0-UINT16\_MAX] | Coded PHY Minimum connection interval, default: 30 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | coded\_interval\_max | [0-UINT16\_MAX] | Coded PHY Maximum connection interval, default: 50 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | coded\_latency | [UINT16] | Coded PHY Connection latency, default: 0 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | coded\_timeout | [UINT16] | Coded PHY Connection timeout, default: 0x0100 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | coded\_min\_conn\_event\_len | [UINT16] | Coded PHY Minimum length of connection event, default: 0x0010 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | coded\_max\_conn\_event\_len | [UINT16] | Coded PHY Maximum length of connection event, default: 0x0300 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | 2M\_scan\_interval | [0-UINT16\_MAX] | 2M PHY Scan interval, default: 0x0010 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | 2M\_scan\_window | [0-UINT16\_MAX] | 2M PHY Scan window, default: 0x0010 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | 2M\_interval\_min | [0-UINT16\_MAX] | 2M PHY Minimum connection interval, default: 30 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | 2M\_interval\_max | [0-UINT16\_MAX] | 2M PHY Maximum connection interval, default: 50 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | 2M\_latency | [UINT16] | 2M PHY Connection latency, default: 0 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | 2M\_timeout | [UINT16] | 2M PHY Connection timeout, default: 0x0100 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | 2M\_min\_conn\_event\_len | [UINT16] | 2M PHY Minimum length of connection event, default: 0x0010 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | 2M\_max\_conn\_event\_len | [UINT16] | 2M PHY Maximum length of connection event, default: 0x0300 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| **disconnect** | | | Disconnect exisiting connection |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | conn | [UINT16] | Connection handle |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | reason | [UINT8] | Disconnect reason |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| **show-addr** | | | Show local public and random identity addresses |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| **show-conn** | | | Show current connections |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| **conn-rssi** | | | Obtain RSSI of specified connection |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | conn | [UINT16] | Connection handle |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| **conn-update-params** | | | Update parameters of specified connection |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | conn | [UINT16] | Connection handle |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | interval\_min | [0-UINT16\_MAX] | Minimum connection interval, default: 30 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | interval\_max | [0-UINT16\_MAX] | Maximum connection interval, default: 50 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | latency | [UINT16] | Connection latency, default: 0 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | timeout | [UINT16] | Connection timeout, default: 0x0100 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | min\_conn\_event\_len | [UINT16] | Minimum length of connection event, default: 0x0010 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | max\_conn\_event\_len | [UINT16] | Maximum length of connection event, default: 0x0300 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| **conn-datalen** | | | Set DLE parmaeters for connection |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | conn | [UINT16] | Connection handle |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | octets | [UINT16] | Maximum transmission packet size |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | time | [UINT16] | Maximum transmission packet time |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| **phy-set** | | | Set prefered PHYs used for connection |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | conn | [UINT16] | Connection handle |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | tx\_phys\_mask | [UINT8] | Prefered PHYs on TX is mask of following bits0x00 - no preference0x01 - 1M, 0x02 - 2M, 0x04 - Coded |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | rx\_phys\_mask | [UINT8] | Prefered PHYs on RX is mask of following bits0x00 - no preference0x01 - 1M, 0x02 - 2M, 0x04 - Coded |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | phy\_opts | [UINT16] | Options for Coded PHY 0 - any coding, 1 - prefer S2, 2 - prefer S8 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| **phy-set-default** | | | Set default prefered PHYs used for new connection |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | tx\_phys\_mask | [UINT8] | Prefered PHYs on TX is mask of following bits0x00 - no preference0x01 - 1M, 0x02 - 2M, 0x04 - Coded |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | rx\_phys\_mask | [UINT8] | Prefered PHYs on RX is mask of following bits0x00 - no preference0x01 - 1M, 0x02 - 2M, 0x04 - Coded |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| **phy-read** | | | Read connection current PHY |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | conn | [UINT16] | Connection handle |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| **l2cap-update** | | | Update connection parameters |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | interval\_min | [0-UINT16\_MAX] | Minimum connection interval, default: 30 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | interval\_max | [0-UINT16\_MAX] | Maximum connection interval, default: 50 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | latency | [UINT16] | Connection latency, default: 0 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
| | timeout | [UINT16] | Connection timeout, default: 0x0100 |
+--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
Security
--------
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| **Command** | **Parmeters** | \*\* Possible values\*\* | **Description** |
+===========================+====================+============================+============================================================================================================================+
| **security-set-data** | | | Set security configuration |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| | oob-flag | [``0``-1] | Set Out-Of-Band (OOB) flag in Security Manager |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| | mitm-flag | [``0``-1] | Set Man-In-The-Middle (MITM) flag in Security Manager |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| | io\_capabilities | 0 | Set Input-Output Capabilities to "DisplayOnly" |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| | | 1 | Set Input-Output Capabilities to "DisplayYesNo" |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| | | 2 | Set Input-Output Capabilities to "KeyboardOnly" |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| | | 3 | Set Input-Output Capabilities to "NoInputNoOutput" |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| | | 4 | Set Input-Output Capabilities to "KeyboardDisplay" |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| | our\_key\_dist | [UINT8] | Set Local Keys Distribution, this is a bit field of possible values: LTK (0x01), IRK (0x02), CSRK (0x04), LTK\_SC(0x08) |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| | their\_key\_dist | [UINT8] | Set Remote Keys Distribution, this is a bit field of possible values: LTK (0x01), IRK (0x02), CSRK (0x04), LTK\_SC(0x08) |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| | bonding-flag | [``0``-1] | Set Bonding flag in Security Manager |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| | sc-flag | [``0``-1] | Set Secure Connections flag in Security Manager |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| **security-pair** | | | Start pairing procedure |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| | conn | [UINT16] | Connection handle |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| **security-encryption** | | | Start encryption procedure |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| | conn | [UINT16] | Connection handle |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| | ediv | [UINT16] | EDIV for LTK to use (use storage if not provided) |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| | rand | [UINT64] | Rand for LTK |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| | ltk | XX:XX:XX... | LTK (16 bytes) |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| **security-start** | | | Start security procedure (This starts either pairing or encryption depending if keys are stored) |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| | conn | [UINT16] | Connection handle |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| **auth-passkey** | | | Reply to Passkey request |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| | conn | [UINT16] | Connection handle |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| | action | [UINT16] | Action to reply (as received in event) |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| | key | [0-999999] | Passkey to reply (Input or Display action) |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| | oob | XX:XX:XX:... | Out-Of-Band secret (16 bytes) (OOB action) |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
| | yesno | Yy-Ny | Confirm passkey (for Passkey Confirm action) |
+---------------------------+--------------------+----------------------------+----------------------------------------------------------------------------------------------------------------------------+
Advertising with Extended Advertising enabled
---------------------------------------------
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| **Command** | **Parmeters** | \*\* Possible values\*\* | **Description** |
+==============================+==========================+============================+=====================================================================================+
| **advertise-configure** | | | Configure new advertising instance |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | instance | [``0``-UINT8\_MAX] | Advertising instance |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | connectable | [``0``-1] | Use connectable advertising |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | scannable | [``0``-1] | Use scannable advertising |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | peer\_addr\_type | ``public`` | Remote device public address type |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | | random | Remote device random address type |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | | public\_id | Remote device public address type (Identity) |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | | random\_id | Remote device random address type (Identity) |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | peer\_addr | XX:XX:XX:XX:XX:XX | Remote device address - if provided perform directed advertising |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | own\_addr\_type | ``public`` | Use public address for scan requests |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | | random | Use random address for scan requests |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | | rpa\_pub | Use RPA address for scan requests (fallback to public if no IRK) |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | | rpa\_rnd | Use RPA address for scan requests (fallback to random if no IRK) |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | channel\_map | [``0``-UINT8\_MAX} | Primary advertising channels map. If 0 use all channels. |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | filter | ``none`` | Advertising filter policy - no filtering, no whitelist used |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | | scan | process all connection requests but only scans from white list |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | | conn | process all scan request but only connection requests from white list |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | | both | ignore all scan and connection requests unless in white list |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | interval\_min | [``0``-UINT32\_MAX] | Minimum advertising interval in 0.625 miliseconds If 0 use stack default. |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | interval\_max | [``0``-UINT32\_MAX] | Maximum advertising interval in 0.625 miliseconds If 0 use stack default. |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | rx\_power | [-127 - ``127``] | Advertising TX power in dBm |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | primary\_phy | ``1M`` | Use 1M PHY on primary advertising channels |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | | ``coded`` | Use Coded PHY on primary advertising channels |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | secondary\_phy | ``1M`` | Use 1M PHY on secondary advertising channels |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | | ``coded`` | Use coded PHY on primary advertising channels |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | | ``2M`` | Use 2M PHY on primary advertising channels |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | sid | [``0``-16] | Adsertising instance SID |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | high\_duty | [``0``-1] | Use high\_duty advertising |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | anonymous | [``0``-1] | Use anonymous advertising |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | legacy | [``0``-1] | Use legacy PDUs for advertising |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | include\_tx\_power | [``0``-1] | Include TX power information in advertising PDUs |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | scan\_req\_notif | [``0``-1] | Enable SCAN\_REQ notifications |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| **advertise-set-addr** | | | Configure *random* adress for instance |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | instance | [``0``-UINT8\_MAX] | Advertising instance |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | addr | XX:XX:XX:XX:XX:XX | Random address |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| **advertise-set-adv-data** | | | Configure advertising instance ADV\_DATA. This allow to configure following TLVs: |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| **advertise-set-scan-rsp** | | | Configure advertising instance SCAN\_RSP. This allow to configure following TLVs: |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | instance | [``0``-UINT8\_MAX] | Advertising instance |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | flags | [``0``-UINT8\_MAX] | Flags value |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | uuid16 | [UINT16] | 16-bit UUID value (can be passed multiple times) |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | uuid16\_is\_complete | [``0``-1] | I 16-bit UUID list is complete |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | uuid32 | [UINT32] | 32-bit UUID value (can be passed multiple times) |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | uuid32\_is\_complete | [``0``-1] | I 32-bit UUID list is complete |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | uuid128 | XX:XX:XX:... | 128-bit UUID value (16 bytes) (can be passed multiple times) |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | uuid128\_is\_complete | [``0``-1] | I 128-bit UUID list is complete |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | tx\_power\_level | [-127 - 127] | TX Power level to include |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | appearance | [UINT16] | Appearance |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | name | string | Name |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | advertising\_interval | [UINT16] | Advertising interval |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | service\_data\_uuid32 | XX:XX:XX:... | 32-bit UUID service data |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | service\_data\_uuid128 | XX:XX:XX:... | 128-bit UUID service data |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | uri | XX:XX:XX:... | URI |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | msg\_data | XX:XX:XX:... | Manufacturer data |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | eddystone\_url | string | Eddystone with specified URL |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| **advertise-start** | | | Start advertising with configured instance |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | instance | [``0``-UINT8\_MAX] | Advertising instance |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | duration | [``0``-UINT16\_MAX] | Advertising duration in 10ms units. 0 - forver |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | max\_events | [``0``-UINT8\_MAX] | Maximum number of advertising events. 0 - no limit |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| **advertise-stop** | | | Stop advertising |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | instance | [``0``-UINT8\_MAX] | Advertising instance |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| **advertise-remove** | | | Remove configured advertising instance |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | instance | [``0``-UINT8\_MAX] | Advertising instance |
+------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
Legacy Advertising with Extended Advertising disabled
-----------------------------------------------------
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| **Command** | **Parmeters** | \*\* Possible values\*\* | **Description** |
+====================+==========================+============================+=====================================================================================+
| **advertise** | | | Enable advertising |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | stop | | Stop enabled advertising |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | conn | ``und`` | Connectable mode: undirected |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | | non | non-connectable |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | | dir | directed |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | discov | ``gen`` | Discoverable mode: general discoverable |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | | ltd | limited discoverable |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | | non | non-discoverable |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | scannable | [``0``-1] | Use scannable advertising |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | peer\_addr\_type | ``public`` | Remote device public address type |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | | random | Remote device random address type |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | | public\_id | Remote device public address type (Identity) |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | | random\_id | Remote device random address type (Identity) |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | peer\_addr | XX:XX:XX:XX:XX:XX | Remote device address - if provided perform directed advertising |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | own\_addr\_type | ``public`` | Use public address for scan requests |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | | random | Use random address for scan requests |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | | rpa\_pub | Use RPA address for scan requests (fallback to public if no IRK) |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | | rpa\_rnd | Use RPA address for scan requests (fallback to random if no IRK) |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | channel\_map | [``0``-UINT8\_MAX} | Primary advertising channels map. If 0 use all channels. |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | filter | ``none`` | Advertising filter policy - no filtering, no whitelist used |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | | scan | process all connection requests but only scans from white list |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | | conn | process all scan request but only connection requests from white list |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | | both | ignore all scan and connection requests unless in white list |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | interval\_min | [``0``-UINT32\_MAX] | Minimum advertising interval in 0.625 miliseconds If 0 use stack default. |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | interval\_max | [``0``-UINT32\_MAX] | Maximum advertising interval in 0.625 miliseconds If 0 use stack default. |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | high\_duty | [``0``-1] | Use high\_duty advertising |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | duration | [``1``-INT32\_MAX] | Advertising duration in ms |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| **set-adv-data** | | | Configure advertising instance ADV\_DATA. This allow to configure following TLVs: |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| **set-scan-rsp** | | | Configure advertising instance SCAN\_RSP. This allow to configure following TLVs: |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | flags | [``0``-UINT8\_MAX] | Flags value |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | uuid16 | [UINT16] | 16-bit UUID value (can be passed multiple times) |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | uuid16\_is\_complete | [``0``-1] | I 16-bit UUID list is complete |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | uuid32 | [UINT32] | 32-bit UUID value (can be passed multiple times) |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | uuid32\_is\_complete | [``0``-1] | I 32-bit UUID list is complete |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | uuid128 | XX:XX:XX:... | 128-bit UUID value (16 bytes) (can be passed multiple times) |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | uuid128\_is\_complete | [``0``-1] | I 128-bit UUID list is complete |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | tx\_power\_level | [-127 - 127] | TX Power level to include |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | appearance | [UINT16] | Appearance |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | name | string | Name |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | advertising\_interval | [UINT16] | Advertising interval |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | service\_data\_uuid32 | XX:XX:XX:... | 32-bit UUID service data |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | service\_data\_uuid128 | XX:XX:XX:... | 128-bit UUID service data |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | uri | XX:XX:XX:... | URI |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | msg\_data | XX:XX:XX:... | Manufacturer data |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
| | eddystone\_url | string | Eddystone with specified URL |
+--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
L2CAP Connection Oriented Channels
----------------------------------
+---------------------------+-----------------+----------------------------+----------------------------------------------------+
| **Command** | **Parmeters** | \*\* Possible values\*\* | **Description** |
+===========================+=================+============================+====================================================+
| **l2cap-create-server** | | | Create L2CAP server |
+---------------------------+-----------------+----------------------------+----------------------------------------------------+
| | psm | [UINT16] | PSM |
+---------------------------+-----------------+----------------------------+----------------------------------------------------+
| **l2cap-connect** | | | Connect to remote L2CAP server |
+---------------------------+-----------------+----------------------------+----------------------------------------------------+
| | conn | [UINT16] | Connection handle |
+---------------------------+-----------------+----------------------------+----------------------------------------------------+
| | psm | [UINT16] | PSM |
+---------------------------+-----------------+----------------------------+----------------------------------------------------+
| **l2cap-disconnect** | | | Disconnec from L2CAP server |
+---------------------------+-----------------+----------------------------+----------------------------------------------------+
| | conn | [UINT16] | Connection handle |
+---------------------------+-----------------+----------------------------+----------------------------------------------------+
| | idx | [UINT16] | L2CAP connection oriented channel identifier |
+---------------------------+-----------------+----------------------------+----------------------------------------------------+
| **l2cap-send** | | | Send data over connected L2CAP channel |
+---------------------------+-----------------+----------------------------+----------------------------------------------------+
| | conn | [UINT16] | Connection handle |
+---------------------------+-----------------+----------------------------+----------------------------------------------------+
| | idx | [UINT16] | L2CAP connection oriented channel identifier |
+---------------------------+-----------------+----------------------------+----------------------------------------------------+
| | bytes | [UINT16] | Number of bytes to send (hardcoded data pattern) |
+---------------------------+-----------------+----------------------------+----------------------------------------------------+
| **l2cap-show-coc** | | | Show connected L2CAP channels |
+---------------------------+-----------------+----------------------------+----------------------------------------------------+
Keys storage
------------
+---------------------+-----------------+----------------------------+----------------------------------------------------+
| **Command** | **Parmeters** | \*\* Possible values\*\* | **Description** |
+=====================+=================+============================+====================================================+
| **keystore-add** | | | Add keys to storage |
+---------------------+-----------------+----------------------------+----------------------------------------------------+
| | type | msec | Master Key |
+---------------------+-----------------+----------------------------+----------------------------------------------------+
| | | ssec | Slave Key |
+---------------------+-----------------+----------------------------+----------------------------------------------------+
| | | cccd | Client Characteristic Configuration Descriptor |
+---------------------+-----------------+----------------------------+----------------------------------------------------+
| | addr | XX:XX:XX:XX:XX:XX | Device address |
+---------------------+-----------------+----------------------------+----------------------------------------------------+
| | addr\_type | ``public`` | Device address type |
+---------------------+-----------------+----------------------------+----------------------------------------------------+
| | | random | Use random address for scan requests |
+---------------------+-----------------+----------------------------+----------------------------------------------------+
| | ediv | [UINT16] | EDIV for LTK to add |
+---------------------+-----------------+----------------------------+----------------------------------------------------+
| | rand | [UINT64] | Rand for LTK |
+---------------------+-----------------+----------------------------+----------------------------------------------------+
| | ltk | XX:XX:XX... | LTK (16 bytes) |
+---------------------+-----------------+----------------------------+----------------------------------------------------+
| | irk | XX:XX:XX... | Identity Resolving Key (16 bytes) |
+---------------------+-----------------+----------------------------+----------------------------------------------------+
| | csrk | XX:XX:XX... | Connection Signature Resolving Key (16 bytes) |
+---------------------+-----------------+----------------------------+----------------------------------------------------+
| **keystore-del** | | | Delete keys from storage |
+---------------------+-----------------+----------------------------+----------------------------------------------------+
| | type | msec | Master Key |
+---------------------+-----------------+----------------------------+----------------------------------------------------+
| | | ssec | Slave Key |
+---------------------+-----------------+----------------------------+----------------------------------------------------+
| | | cccd | Client Characteristic Configuration Descriptor |
+---------------------+-----------------+----------------------------+----------------------------------------------------+
| | addr | XX:XX:XX:XX:XX:XX | Device address |
+---------------------+-----------------+----------------------------+----------------------------------------------------+
| | addr\_type | ``public`` | Device address type |
+---------------------+-----------------+----------------------------+----------------------------------------------------+
| | | random | Use random address for scan requests |
+---------------------+-----------------+----------------------------+----------------------------------------------------+
| | ediv | [UINT16] | EDIV for LTK to remove |
+---------------------+-----------------+----------------------------+----------------------------------------------------+
| | rand | [UINT64] | Rand for LTK |
+---------------------+-----------------+----------------------------+----------------------------------------------------+
| **keystore-show** | | | Show stored keys |
+---------------------+-----------------+----------------------------+----------------------------------------------------+
| | type | msec | Master Keys |
+---------------------+-----------------+----------------------------+----------------------------------------------------+
| | | ssec | Slave Keys |
+---------------------+-----------------+----------------------------+----------------------------------------------------+
| | | cccd | Client Characteristic Configuration Descriptor s |
+---------------------+-----------------+----------------------------+----------------------------------------------------+
+108
View File
@@ -0,0 +1,108 @@
GATT feature API for btshell
============================
GATT(GENERIC ATTRIBUTE PROFILE) describes a service framework using the Attribute Protocol for discovering services,
and for reading and writing characteristic values on a peer device. There are 11 features defined in the GATT Profile,
and each of the features is mapped to procedures and sub-procedures:
Available commands
~~~~~~~~~~~~~~~~~~
Parameters default values (if applicable) are marked red.
Configuration
-------------
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| **Command** | **Parmeters** | \*\* Possible values\*\* | **Description** |
+====================================+=================+============================+===========================================================+
| **gatt-discover-characteristic** | | | Discover GATT characteristics |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | conn | [UINT16] | Connection handle |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | uuid | [UINT16] | Characteristic UUID |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | start | [UINT16] | Discovery start handle |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | end | [UINT16] | Discovery end handle |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| **gatt-discover-descriptor** | | | Discover GATT descriptors |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | conn | [UINT16] | Connection handle |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | start | [UINT16] | Discovery start handle |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | end | [UINT16] | Discovery end handle |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| **gatt-discover-service** | | | Discover services |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | conn | [UINT16] | Connection handle |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | uuid16 | [UINT16] | Service UUID |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| **gatt-discover-full** | | | Discover services, characteristic and descriptors |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | conn | [UINT16] | Connection handle |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| **gatt-find-included-services** | | | Find included services |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | conn | [UINT16] | Connection handle |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | start | [UINT16] | Discovery start handle |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | end | [UINT16] | Discovery end handle |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| **gatt-exchange-mtu** | | | Initiate ATT MTU exchange procedure |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | conn | [UINT16] | Connection handle |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| **gatt-read** | | | Read attribute |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | conn | [UINT16] | Connection handle |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | long | [``0``-1] | Long read |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | attr | [UINT16] | Attribute handle |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | offset | [UINT16] | Long read offset value |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | uuid | [UINT16] | Characteristic UUID |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | start | [UINT16] | Discovery start handle |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | end | [UINT16] | Discovery end handle |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| **gatt-notify** | | | Send notification or indication to all subscribed peers |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | attr | [UINT16] | Attribute handle |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| **gatt-service-changed** | | | Send Services Changed notification |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | start | [UINT16] | Start handle |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | end | [UINT16] | End handle |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| **gatt-service-visibility** | | | Set service visibility |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | handle | [UINT16] | Service handle |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | visibility | [``0``-1] | Service visibility |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| **gatt-show** | | | Show remote devices discovered databases structure |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| **gatt-show-local** | | | Show local database structure |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| **gatt-write** | | | Write attribute |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | conn | [UINT16] | Connection handle |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | no\_rsp | [``0``-1] | Use Write Without Response |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | long | [``0``-1] | Use Long Write procedure |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | attr | [UINT16] | Attribute handle |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | offset | [UINT16] | Long write offset value |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
| | value | XX:XX:XX... | Data to write |
+------------------------------------+-----------------+----------------------------+-----------------------------------------------------------+
+47
View File
@@ -0,0 +1,47 @@
Advertisement Data Fields
-------------------------
This part defines the advertisement data fields used in the ``btshell`` app. For a complete list of all data types and
formats used for Extended Inquiry Response (EIR), Advertising Data (AD), and OOB data blocks, refer to the Supplement
to the Bluetooth Core Specification, CSSv6, available for download
`here <https://www.bluetooth.org/DocMan/handlers/DownloadDoc.ashx?doc_id=302735&_ga=1.133090766.1368218946.1444779486>`__.
+---------------------------+-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------+
| **Name** | **Definition** | **Details** | **btshell Notes** |
+===========================+=====================================================+===========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================+==============================================+
| flags | Indicates basic information about the advertiser. | Flags used over the LE physical channel are: \* Limited Discoverable Mode \* General Discoverable Mode \* BR/EDR Not Supported \* Simultaneous LE and BR/EDR to Same Device Capable (Controller) \* Simultaneous LE and BR/EDR to Same Device Capable (Host) | NimBLE will auto-calculate if set to 0. |
+---------------------------+-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------+
| uuid16 | 16-bit Bluetooth Service UUIDs | Indicates the Service UUID list is incomplete i.e. more 16-bit Service UUIDs available. 16 bit UUIDs shall only be used if they are assigned by the Bluetooth SIG. | Set repeatedly for multiple service UUIDs. |
+---------------------------+-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------+
| uuid16\_is\_complete | 16-bit Bluetooth Service UUIDs | Indicates the Service UUID list is complete. 16 bit UUIDs shall only be used if they are assigned by the Bluetooth SIG. | |
+---------------------------+-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------+
| uuid32 | 32-bit Bluetooth Service UUIDs | Indicates the Service UUID list is incomplete i.e. more 32-bit Service UUIDs available. 32 bit UUIDs shall only be used if they are assigned by the Bluetooth SIG. | Set repeatedly for multiple service UUIDs. |
+---------------------------+-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------+
| uuid32\_is\_complete | 32-bit Bluetooth Service UUIDs | Indicates the Service UUID list is complete. 32 bit UUIDs shall only be used if they are assigned by the Bluetooth SIG. | |
+---------------------------+-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------+
| uuid128 | Global 128-bit Service UUIDs | More 128-bit Service UUIDs available. | Set repeatedly for multiple service UUIDs. |
+---------------------------+-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------+
| uuid128\_is\_complete | Global 128-bit Service UUIDs | Complete list of 128-bit Service UUIDs | |
+---------------------------+-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------+
| tx\_power\_level | TX Power Level | Indicates the transmitted power level of the packet containing the data type. The TX Power Level data type may be used to calculate path loss on a received packet using the following equation: pathloss = Tx Power Level RSSI where “RSSI” is the received signal strength, in dBm, of the packet received. | NimBLE will auto-calculate if set to -128. |
+---------------------------+-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------+
| slave\_interval\_range | Slave Connection Interval Range | Contains the Peripherals preferred connection interval range, for all logical connections. Size: 4 Octets . The first 2 octets defines the minimum value for the connection interval in the following manner: connIntervalmin = Conn\_Interval\_Min \* 1.25 ms Conn\_Interval\_Min range: 0x0006 to 0x0C80 Value of 0xFFFF indicates no specific minimum. The other 2 octets defines the maximum value for the connection interval in the following manner: connIntervalmax = Conn\_Interval\_Max \* 1.25 ms Conn\_Interval\_Max range: 0x0006 to 0x0C80 Conn\_Interval\_Max shall be equal to or greater than the Conn\_Interval\_Min. Value of 0xFFFF indicates no specific maximum. | |
+---------------------------+-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------+
| service\_data\_uuid16 | Service Data - 16 bit UUID | Size: 2 or more octets The first 2 octets contain the 16 bit Service UUID followed by additional service data | |
+---------------------------+-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------+
| public\_target\_address | Public Target Address | Defines the address of one or more intended recipients of an advertisement when one or more devices were bonded using a public address. This data type shall exist only once. It may be sent in either the Advertising or Scan Response data, but not both. | |
+---------------------------+-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------+
| appearance | Appearance | Defines the external appearance of the device. The Appearance data type shall exist only once. It may be sent in either the Advertising or Scan Response data, but not both. | |
+---------------------------+-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------+
| advertising\_interval | Advertising Interval | Contains the advInterval value as defined in the Core specification, Volume 6, Part B, Section 4.4.2.2. | |
+---------------------------+-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------+
| service\_data\_uuid32 | Service Data - 32 bit UUID | Size: 4 or more octets The first 4 octets contain the 32 bit Service UUID followed by additional service data | |
+---------------------------+-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------+
| service\_data\_uuid128 | Service Data - 128 bit UUID | Size: 16 or more octets The first 16 octets contain the 128 bit Service UUID followed by additional service data | |
+---------------------------+-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------+
| uri | Uniform Resource Identifier (URI) | Scheme name string and URI as a UTF-8 string | |
+---------------------------+-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------+
| mfg\_data | Manufacturer Specific data | Size: 2 or more octets The first 2 octets contain the Company Identifier Code followed by additional manufacturer specific data | |
+---------------------------+-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------+
| eddystone\_url | | | |
+---------------------------+-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------+
+153
View File
@@ -0,0 +1,153 @@
API for btshell app
-------------------
"btshell" is one of the sample applications that come with Mynewt. It is a shell application which provides a basic
interface to the host-side of the BLE stack. "btshell" includes all the possible roles (Central/Peripheral) and they may
be run simultaneously. You can run btshell on a board and issue commands that make it behave as a central or a peripheral
with different peers.
**btshell** is a new application that uses shell subsystem introduced in Mynewt 1.1 and has updated commands and
parameters names. Thanks to support for tab completion commands names are more descriptive and self-explanatory
without requiring extensive typing.
Highlighted below are some of the ways you can use the API to establish connections and discover services and
characteristics from peer devices. For descriptions of the full API, go to the next sections on
:doc:`btshell_GAP` and :doc:`btshell_GATT`.
.. contents::
:local:
:depth: 2
.. toctree::
:hidden:
:titlesonly:
GAP <btshell_GAP>
GATT <btshell_GATT>
btshell_advdata
Set device address.
~~~~~~~~~~~~~~~~~~~
On startup, btshell has the following identity address configuration:
- Public address: None
- Random address: None
The below ``set`` commands can be used to change the address configuration:
::
set addr_type=public addr=<device-address>
set addr_type=random addr=<device-address>
For example:
::
set addr_type=public addr=01:02:03:04:05:06
set addr_type=random addr=c1:aa:bb:cc:dd:ee
The address configuration can be viewed with the ``gatt-show-addr`` command, as follows:
::
gatt-show-addr
public_id_addr=01:02:03:04:05:06 random_id_addr=c1:aa:bb:cc:dd:ee
Initiate a direct connection to a device
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In this case, your board is acting as a central and initiating a connection with another BLE device. The example
assumes you know the address of the peer, either by scanning for available peers or because you have set up the peer
yourself.
.. code-block:: none
:emphasize-lines: 1
connect peer_addr=d4:f5:13:53:d2:43
connection established; handle=1 our_ota_addr_type=0 our_ota_addr=0a:0b:0c:0d:0e:0f out_id_addr_type=0 our_id_addr=0a:0b:0c:0d:0e:0f peer_addr_type=0 peer_addr=43:d2:53:13:f5:d4 conn_itvl=40 conn_latency=0 supervision_timeout=256 encrypted=0 authenticated=0 bonded=0
The ``handle=1`` in the output indicates that it is connection-1.
Configure advertisements to include device name
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In this case, your board is acting as a peripheral.
With Extended Advertising enabled (should be executed after advertise-configure):
::
advertise-set-adv-data name=<your-device-name>
With Extended Advertising disabled:
::
set-adv-data name=<your-device-name>
Begin sending undirected general advertisements
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In this case, your board is acting as a peripheral.
With Extended Advertising enabled:
::
advertise-configure connectable=1 legacy=1 scannable=1
advertise-start
With Extended Advertising disabled:
::
advertise conn=und discov=gen
Show established connections.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
::
gatt-show-conn
Discover and display peer's services, characteristics, and descriptors.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This is how you discover and then display the services of the peer you established earlier across connection-1.
.. code-block:: none
:emphasize-lines: 1,2
gatt-discover-full conn=1
gatt-show
[ts=132425ssb, mod=64 level=2] CONNECTION: handle=1 addr=d4:f5:13:53:d2:43
[ts=132428ssb, mod=64 level=2] start=1 end=5 uuid=0x1800
[ts=132433ssb, mod=64 level=2] start=6 end=16 uuid=0x1808
[ts=132437ssb, mod=64 level=2] start=17 end=31 uuid=0x180a
[ts=132441ssb, mod=64 level=2] start=32 end=65535 uuid=00000000-0000-1000-1000000000000000
Read an attribute belonging to the peer
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
::
gatt-read conn=1 attr=21
Write to an attribute belonging to the peer
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
::
gatt-write conn=1 attr=3 value=0x01:0x02:0x03
Perform a passive scan
~~~~~~~~~~~~~~~~~~~~~~
This is how you tell your board to listen to all advertisements around it. The duration is specified in ms.
::
scan duration=1000 passive=1 filter=no_wl
+177
View File
@@ -0,0 +1,177 @@
# -*- coding: utf-8 -*-
#
# Mynewt documentation build configuration file, created by
# sphinx-quickstart on Tue Jan 10 11:33:44 2017.
#
# This file is execfile()d with the current directory set to its
# containing dir.
#
# Note that not all possible configuration values are present in this
# autogenerated file.
#
# All configuration values have a default; values that are commented out
# serve to show the default.
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
import os
import sys
sys.path.insert(0, os.path.abspath('_ext'))
# -- General configuration ------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here.
#
# needs_sphinx = '1.0'
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
'sphinx.ext.autodoc', 'breathe', 'sphinx.ext.todo',
'sphinx.ext.extlinks'
]
# Add any paths that contain templates here, relative to this directory.
templates_path = []
# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
#
source_suffix = '.rst'
# The master toctree document.
master_doc = 'index'
# General information about the project.
project = u'Mynewt'
copyright = u'Copyright © 2017 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.'
author = u'The Apache Software Foundation'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = u'1.0'
# The full version, including alpha/beta/rc tags.
release = u'1.0.0-b1'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = None
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This patterns also effect to html_static_path and html_extra_path
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'themes']
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'
highlight_language = 'none'
# If true, `todo` and `todoList` produce output, else they produce nothing.
todo_include_todos = False
# -- Options for HTML output ----------------------------------------------
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'alabaster'
html_theme_path = []
html_sidebars = {
'**': [
'about.html',
'navigation.html',
'relations.html',
'searchbox.html',
'donate.html',
]
}
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
# documentation.
#
html_theme_options = {
}
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
# -- Options for HTMLHelp output ------------------------------------------
# Output file base name for HTML help builder.
htmlhelp_basename = 'Mynewtdoc'
# -- Options for LaTeX output ---------------------------------------------
latex_elements = {
# The paper size ('letterpaper' or 'a4paper').
#
# 'papersize': 'letterpaper',
# The font size ('10pt', '11pt' or '12pt').
#
# 'pointsize': '10pt',
# Additional stuff for the LaTeX preamble.
#
# 'preamble': '',
# Latex figure (float) alignment
#
# 'figure_align': 'htbp',
}
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'Mynewt.tex', u'Mynewt Documentation',
u'The Apache Software Foundation', 'manual'),
]
# -- Options for manual page output ---------------------------------------
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, 'mynewt', u'Mynewt Documentation',
[author], 1)
]
# -- Options for Texinfo output -------------------------------------------
# Grouping the document tree into Texinfo files. List of tuples
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'Mynewt', u'Mynewt Documentation',
author, 'Mynewt', 'One line description of project.',
'Miscellaneous'),
]
breathe_projects = {
"mynewt": "_build/xml"
}
breathe_default_project = "mynewt"
breathe_domain_by_extension = {
"h" : "c",
}
+95
View File
@@ -0,0 +1,95 @@
Bluetooth Mesh
--------------
.. toctree::
:hidden:
:titlesonly:
sample
.. contents::
:local:
:depth: 2
Introduction to Mesh
~~~~~~~~~~~~~~~~~~~~
Bluetooth Mesh is a new standard from Bluetooth SIG that was released in 2017. It enables many-to-many device
communication (as opposed to point-to-point approach in BLE) and is optimised for large-scale networks like building
automation or sensors network. It utilizes managed flood based approach where only mains-powered nodes relay messages
making it very power efficient (battery powered low-power nodes that don't relay messages can operate in mesh network for years).
Bluetooth Mesh is complementary to Bluetooth specification and requires features from 4.0 release only. This allows
deployment of networks using hardware already available on the market.
Topology
~~~~~~~~
.. figure:: mesh_topology.jpg
:alt: Bluetooth Mesh Topology (source: Mesh Profile Specification 1.0)
Bluetooth Mesh defines few features (roles) for devices in network. Those are:
- Relay - receive and retransmit mesh messages over the advertising bearer to enable larger networks
- Proxy - receive and retransmit mesh messages between GATT and advertising bearers.
- Low Power - operate within a mesh network at significantly reduced receiver duty cycles only in conjunction with a
node supporting the Friend feature
- Friend - the ability to help a node supporting the Low Power feature to operate by storing messages destined for those nodes
Bearers
~~~~~~~
Mesh Profile specification allows two kinds of bearers for transmitting data:
- Advertising Bearer
- Uses LE advertising to broadcast messages to all nodes that are listening at this time
- Uses non-connectable advertising only
- 29 octets of network message
- GATT Bearer
- Uses LE Connections to send messages
- Uses standard GATT service (one for Provisioning and one for Proxy)
Provisioning
~~~~~~~~~~~~
Provisioning is a process of adding an unprovisioned device to a mesh network managed by a Provisioner. A Provisioner
provides the unprovisioned device with provisioning data that allows it to become a mesh node (network key, current IV
index and unicast address). A Provisioner is typically a smart phone or other mobile computing device.
Models
~~~~~~
Models define basic functionality of nodes on a mesh network. Mesh Profile Specification defines foundation models used
to configure and manage network. Mesh Model Specification includes models defininig functionality that is standard
across device types. Those consists of:
- Generics - root models
- On/Off
- Level
- Battery Server
- Location
- Client Property
- and others
- Sensors - defines a standard way of interfacing with sensors
- Time and Scenes - defines a set of functionalities related to time and saved states on devices
- Lighting - defines a set functionalities related to lighting control
Complex models e.g. Lighting may contain other models eg Generic On/Off. The following image shows an example of Light
Lightness Server Model.
.. figure:: mesh_lightning_model.jpg
:alt: Light Lightness Server model (source: Mesh Model Specification 1.0)
Mesh Node features supported by Apache Mynewt
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Advertising and GATT bearers
- PB-GATT and PB-ADV provisioning
- Foundation Models (server role)
- Relay support
- GATT Proxy
Binary file not shown.

After

Width:  |  Height:  |  Size: 117 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 KiB

+30
View File
@@ -0,0 +1,30 @@
Sample application
------------------
**blemesh** sample application implements Bluetooth Mesh node that supports On/Off and Level models.
To build application use following target. Note that since this application uses Non-resolvable Private Address there is
no need for configuring public address.
::
newt target create blemesh
newt target set blemesh app=@apache-mynewt-core/apps/blemesh
newt target set blemesh bsp=@apache-mynewt-core/hw/bsp/nrf52840pdk
newt target set blemesh build_profile=optimized
newt target set blemesh syscfg=BLE_MESH_PB_GATT=1:BLE_MESH_DEV_UUID='(uint8_t[16]){0x22, 0x20, 0}'
Every device should have unique Device UUID so config amend and rebuild is needed for each of the devices that will be
added to a network.
::
newt target set blemesh syscfg=BLE_MESH_PB_GATT=1:BLE_MESH_DEV_UUID='(uint8_t[16]){0x22, 0x21, 0}'
...
newt target set blemesh syscfg=BLE_MESH_PB_GATT=1:BLE_MESH_DEV_UUID='(uint8_t[16]){0x22, 0x22, 0}'
...
newt target set blemesh syscfg=BLE_MESH_PB_GATT=1:BLE_MESH_DEV_UUID='(uint8_t[16]){0x22, 0x23, 0}'
GATT bearer is enabled so that it is possible to provision those with Bluetooth Mesh application from Silicon Labs
(available `here <https://play.google.com/store/apps/details?id=com.siliconlabs.bluetoothmesh>`__) which doesn't
support advertising bearer.