Skip to content

Commit

Permalink
tests/multi_bluetooth: Fix typo printing wrong IRQ type.
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgeorge committed May 8, 2020
1 parent e2def20 commit 037c83b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions tests/multi_bluetooth/ble_characteristic.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
_IRQ_GATTS_WRITE = const(1 << 2)
_IRQ_PERIPHERAL_CONNECT = const(1 << 6)
_IRQ_PERIPHERAL_DISCONNECT = const(1 << 7)
_IRQ_GATTC_SERVICE_RESULT = const(1 << 8)
_IRQ_GATTC_CHARACTERISTIC_RESULT = const(1 << 9)
_IRQ_GATTC_READ_RESULT = const(1 << 11)
_IRQ_GATTC_WRITE_STATUS = const(1 << 12)
Expand Down Expand Up @@ -50,7 +49,7 @@ def irq(event, data):
elif event == _IRQ_GATTC_CHARACTERISTIC_RESULT:
# conn_handle, def_handle, value_handle, properties, uuid = data
if data[-1] == CHAR_UUID:
print("_IRQ_GATTC_SERVICE_RESULT", data[-1])
print("_IRQ_GATTC_CHARACTERISTIC_RESULT", data[-1])
value_handle = data[2]
elif event == _IRQ_GATTC_READ_RESULT:
print("_IRQ_GATTC_READ_RESULT", data[-1])
Expand Down
2 changes: 1 addition & 1 deletion tests/multi_bluetooth/ble_characteristic.py.exp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ _IRQ_CENTRAL_DISCONNECT
--- instance1 ---
gap_connect
_IRQ_PERIPHERAL_CONNECT
_IRQ_GATTC_SERVICE_RESULT UUID128('00000000-1111-2222-3333-444444444444')
_IRQ_GATTC_CHARACTERISTIC_RESULT UUID128('00000000-1111-2222-3333-444444444444')
gattc_read
_IRQ_GATTC_READ_RESULT b'periph0'
gattc_write
Expand Down

0 comments on commit 037c83b

Please sign in to comment.