Skip to content

Commit 0c5880d

Browse files
pi-anljimmo
authored andcommitted
aioble/l2cap: Fix psm variable name.
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
1 parent 7602843 commit 0c5880d

File tree

1 file changed

+4
-4
lines changed
  • micropython/bluetooth/aioble/aioble

1 file changed

+4
-4
lines changed

micropython/bluetooth/aioble/aioble/l2cap.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -178,14 +178,14 @@ async def __aexit__(self, exc_type, exc_val, exc_traceback):
178178

179179

180180
# Use connection.l2cap_accept() instead of calling this directly.
181-
async def accept(connection, psn, mtu, timeout_ms):
181+
async def accept(connection, psm, mtu, timeout_ms):
182182
global _listening
183183

184184
channel = L2CAPChannel(connection)
185185

186186
# Start the stack listening if necessary.
187187
if not _listening:
188-
ble.l2cap_listen(psn, mtu)
188+
ble.l2cap_listen(psm, mtu)
189189
_listening = True
190190

191191
# Wait for the connect irq from the remote connection.
@@ -195,14 +195,14 @@ async def accept(connection, psn, mtu, timeout_ms):
195195

196196

197197
# Use connection.l2cap_connect() instead of calling this directly.
198-
async def connect(connection, psn, mtu, timeout_ms):
198+
async def connect(connection, psm, mtu, timeout_ms):
199199
if _listening:
200200
raise ValueError("Can't connect while listening")
201201

202202
channel = L2CAPChannel(connection)
203203

204204
with connection.timeout(timeout_ms):
205-
ble.l2cap_connect(connection._conn_handle, psn, mtu)
205+
ble.l2cap_connect(connection._conn_handle, psm, mtu)
206206

207207
# Wait for the connect irq from the remote connection.
208208
# If the connection fails, we get a disconnect event (with status) instead.

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy