mirror of
https://github.com/micropython/micropython.git
synced 2026-01-06 12:10:13 +01:00
extmod/modbluetooth: Provide FLAG_WRITE_NO_RESPONSE for characteristics.
This flag is supported and needs to be set if characteristics are write- without-response.
This commit is contained in:
@@ -16,14 +16,12 @@ _IRQ_GATTC_READ_RESULT = const(1 << 11)
|
||||
_IRQ_GATTC_WRITE_STATUS = const(1 << 12)
|
||||
_IRQ_GATTC_NOTIFY = const(1 << 13)
|
||||
|
||||
FLAG_WRITE_NO_RESPONSE = const(1 << 2)
|
||||
|
||||
SERVICE_UUID = bluetooth.UUID("00000001-1111-2222-3333-444444444444")
|
||||
CHAR_CTRL_UUID = bluetooth.UUID("00000002-1111-2222-3333-444444444444")
|
||||
CHAR_RX_UUID = bluetooth.UUID("00000003-1111-2222-3333-444444444444")
|
||||
CHAR_TX_UUID = bluetooth.UUID("00000004-1111-2222-3333-444444444444")
|
||||
CHAR_CTRL = (CHAR_CTRL_UUID, bluetooth.FLAG_WRITE | bluetooth.FLAG_NOTIFY)
|
||||
CHAR_RX = (CHAR_RX_UUID, bluetooth.FLAG_WRITE | FLAG_WRITE_NO_RESPONSE)
|
||||
CHAR_RX = (CHAR_RX_UUID, bluetooth.FLAG_WRITE | bluetooth.FLAG_WRITE_NO_RESPONSE)
|
||||
CHAR_TX = (CHAR_TX_UUID, bluetooth.FLAG_NOTIFY)
|
||||
SERVICE = (SERVICE_UUID, (CHAR_CTRL, CHAR_RX, CHAR_TX))
|
||||
SERVICES = (SERVICE,)
|
||||
|
||||
Reference in New Issue
Block a user