micropython/tests/multi_bluetooth
Damien George 3b6c9119eb extmod/modbluetooth: Add support for changing the GAP device name.
This commit allows the user to set/get the GAP device name used by service
0x1800, characteristic 0x2a00.  The usage is:

    BLE.config(gap_name="myname")
    print(BLE.config("gap_name"))

As part of this change the compile-time setting
MICROPY_PY_BLUETOOTH_DEFAULT_NAME is renamed to
MICROPY_PY_BLUETOOTH_DEFAULT_GAP_NAME to emphasise its link to GAP and this
new "gap_name" config value.  And the default value of this for the NimBLE
bindings is changed from "PYBD" to "MPY NIMBLE" to be more generic.
2020-05-11 21:30:41 +10:00
..
ble_characteristic.py tests/multi_bluetooth: Fix typo printing wrong IRQ type. 2020-05-08 13:23:45 +10:00
ble_characteristic.py.exp tests/multi_bluetooth: Fix typo printing wrong IRQ type. 2020-05-08 13:23:45 +10:00
ble_gap_advertise.py tests/multi_bluetooth/ble_gap_advertise: Fix bytes/str compare warning. 2020-04-29 16:45:46 +10:00
ble_gap_advertise.py.exp
ble_gap_connect.py
ble_gap_connect.py.exp
ble_gap_device_name.py extmod/modbluetooth: Add support for changing the GAP device name. 2020-05-11 21:30:41 +10:00
ble_gap_device_name.py.exp extmod/modbluetooth: Add support for changing the GAP device name. 2020-05-11 21:30:41 +10:00
ble_gatt_data_transfer.py extmod/modbluetooth: Provide FLAG_WRITE_NO_RESPONSE for characteristics. 2020-04-07 13:46:56 +10:00
ble_gatt_data_transfer.py.exp
ble_gattc_discover_services.py
ble_gattc_discover_services.py.exp