2020-03-04 21:34:46 -05:00
|
|
|
# Test BLE GAP connect/disconnect
|
|
|
|
|
|
|
|
from micropython import const
|
|
|
|
import time, machine, bluetooth
|
|
|
|
|
|
|
|
TIMEOUT_MS = 4000
|
|
|
|
|
2020-05-13 00:35:32 -04:00
|
|
|
_IRQ_CENTRAL_CONNECT = const(1)
|
|
|
|
_IRQ_CENTRAL_DISCONNECT = const(2)
|
|
|
|
_IRQ_PERIPHERAL_CONNECT = const(7)
|
|
|
|
_IRQ_PERIPHERAL_DISCONNECT = const(8)
|
2020-03-04 21:34:46 -05:00
|
|
|
|
2020-08-31 01:54:20 -04:00
|
|
|
central_connected = False
|
|
|
|
central_disconnected = False
|
|
|
|
peripheral_connected = False
|
|
|
|
peripheral_disconnected = False
|
|
|
|
conn_handle = None
|
2020-03-04 21:34:46 -05:00
|
|
|
|
|
|
|
|
|
|
|
def irq(event, data):
|
2020-08-31 01:54:20 -04:00
|
|
|
global central_connected, central_disconnected, peripheral_connected, peripheral_disconnected, conn_handle
|
2020-03-04 21:34:46 -05:00
|
|
|
if event == _IRQ_CENTRAL_CONNECT:
|
|
|
|
print("_IRQ_CENTRAL_CONNECT")
|
2020-08-31 01:54:20 -04:00
|
|
|
central_connected = True
|
|
|
|
conn_handle = data[0]
|
2020-03-04 21:34:46 -05:00
|
|
|
elif event == _IRQ_CENTRAL_DISCONNECT:
|
|
|
|
print("_IRQ_CENTRAL_DISCONNECT")
|
2020-08-31 01:54:20 -04:00
|
|
|
central_disconnected = True
|
2020-03-04 21:34:46 -05:00
|
|
|
elif event == _IRQ_PERIPHERAL_CONNECT:
|
|
|
|
print("_IRQ_PERIPHERAL_CONNECT")
|
2020-08-31 01:54:20 -04:00
|
|
|
peripheral_connected = True
|
|
|
|
conn_handle = data[0]
|
2020-03-04 21:34:46 -05:00
|
|
|
elif event == _IRQ_PERIPHERAL_DISCONNECT:
|
|
|
|
print("_IRQ_PERIPHERAL_DISCONNECT")
|
2020-08-31 01:54:20 -04:00
|
|
|
peripheral_disconnected = True
|
|
|
|
remote_addr = data[0]
|
2020-03-04 21:34:46 -05:00
|
|
|
|
2020-05-13 00:35:32 -04:00
|
|
|
|
2020-08-31 01:54:20 -04:00
|
|
|
def wait_for(fn, timeout_ms):
|
2020-03-04 21:34:46 -05:00
|
|
|
t0 = time.ticks_ms()
|
2020-05-13 00:35:32 -04:00
|
|
|
while time.ticks_diff(time.ticks_ms(), t0) < timeout_ms:
|
2020-08-31 01:54:20 -04:00
|
|
|
if fn():
|
2020-05-13 00:35:32 -04:00
|
|
|
return True
|
2020-03-04 21:34:46 -05:00
|
|
|
machine.idle()
|
2020-05-13 00:35:32 -04:00
|
|
|
return False
|
2020-03-04 21:34:46 -05:00
|
|
|
|
|
|
|
|
|
|
|
# Acting in peripheral role.
|
|
|
|
def instance0():
|
2020-08-31 01:54:20 -04:00
|
|
|
global central_connected, central_disconnected
|
|
|
|
|
2020-03-04 21:34:46 -05:00
|
|
|
multitest.globals(BDADDR=ble.config("mac"))
|
|
|
|
print("gap_advertise")
|
|
|
|
ble.gap_advertise(20_000, b"\x02\x01\x06\x04\xffMPY")
|
|
|
|
multitest.next()
|
|
|
|
try:
|
|
|
|
# Wait for central to connect, then wait for it to disconnect.
|
2020-08-31 01:54:20 -04:00
|
|
|
if not wait_for(lambda: central_connected, TIMEOUT_MS):
|
2020-05-13 00:35:32 -04:00
|
|
|
return
|
2020-08-31 01:54:20 -04:00
|
|
|
if not wait_for(lambda: central_disconnected, TIMEOUT_MS):
|
2020-03-04 21:34:46 -05:00
|
|
|
return
|
|
|
|
|
2020-08-31 01:54:20 -04:00
|
|
|
central_connected = False
|
|
|
|
central_disconnected = False
|
|
|
|
|
2020-03-04 21:34:46 -05:00
|
|
|
# Start advertising again.
|
2020-08-31 01:54:20 -04:00
|
|
|
print("gap_advertise")
|
2020-03-04 21:34:46 -05:00
|
|
|
ble.gap_advertise(20_000, b"\x02\x01\x06\x04\xffMPY")
|
|
|
|
|
|
|
|
# Wait for central to connect, then disconnect it.
|
2020-08-31 01:54:20 -04:00
|
|
|
if not wait_for(lambda: central_connected, TIMEOUT_MS):
|
2020-05-13 00:35:32 -04:00
|
|
|
return
|
2020-08-31 01:54:20 -04:00
|
|
|
print("gap_disconnect:", ble.gap_disconnect(conn_handle))
|
|
|
|
if not wait_for(lambda: central_disconnected, TIMEOUT_MS):
|
2020-03-04 21:34:46 -05:00
|
|
|
return
|
|
|
|
finally:
|
|
|
|
ble.active(0)
|
|
|
|
|
|
|
|
|
|
|
|
# Acting in central role.
|
|
|
|
def instance1():
|
2020-08-31 01:54:20 -04:00
|
|
|
global peripheral_connected, peripheral_disconnected
|
|
|
|
|
2020-03-04 21:34:46 -05:00
|
|
|
multitest.next()
|
|
|
|
try:
|
|
|
|
# Connect to peripheral and then disconnect.
|
|
|
|
print("gap_connect")
|
2020-08-14 01:16:29 -04:00
|
|
|
ble.gap_connect(*BDADDR)
|
2020-08-31 01:54:20 -04:00
|
|
|
if not wait_for(lambda: peripheral_connected, TIMEOUT_MS):
|
2020-03-04 21:34:46 -05:00
|
|
|
return
|
2020-08-31 01:54:20 -04:00
|
|
|
print("gap_disconnect:", ble.gap_disconnect(conn_handle))
|
|
|
|
if not wait_for(lambda: peripheral_disconnected, TIMEOUT_MS):
|
2020-03-04 21:34:46 -05:00
|
|
|
return
|
|
|
|
|
2020-08-31 01:54:20 -04:00
|
|
|
peripheral_connected = False
|
|
|
|
peripheral_disconnected = False
|
|
|
|
|
2020-03-04 21:34:46 -05:00
|
|
|
# Wait for peripheral to start advertising again.
|
|
|
|
time.sleep_ms(100)
|
|
|
|
|
|
|
|
# Connect to peripheral and then let the peripheral disconnect us.
|
|
|
|
print("gap_connect")
|
2020-08-14 01:16:29 -04:00
|
|
|
ble.gap_connect(*BDADDR)
|
2020-08-31 01:54:20 -04:00
|
|
|
if not wait_for(lambda: peripheral_connected, TIMEOUT_MS):
|
|
|
|
return
|
|
|
|
if not wait_for(lambda: peripheral_disconnected, TIMEOUT_MS):
|
2020-03-04 21:34:46 -05:00
|
|
|
return
|
|
|
|
finally:
|
|
|
|
ble.active(0)
|
|
|
|
|
|
|
|
|
|
|
|
ble = bluetooth.BLE()
|
|
|
|
ble.active(1)
|
|
|
|
ble.irq(irq)
|