summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Mussared <jim.mussared@gmail.com>2023-02-16 11:04:18 +1100
committerDamien George <damien@micropython.org>2023-02-16 12:32:03 +1100
commit5812611ab2adbe14af94d0c316879698cf3b4d8b (patch)
treea5d9db3d7108ac0781d7f121706b12de5046627f
parente140c7d26ae1fbd0878012efd4f48c7b638296e2 (diff)
rp2/boards/ARDUINO_NANO_RP2040_CONNECT: Use default aioble.
The default now includes all sub-components (security, l2cap, etc) and using the kwarg options is no longer supported. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
-rw-r--r--ports/rp2/boards/ARDUINO_NANO_RP2040_CONNECT/manifest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/rp2/boards/ARDUINO_NANO_RP2040_CONNECT/manifest.py b/ports/rp2/boards/ARDUINO_NANO_RP2040_CONNECT/manifest.py
index 2fed2b192..e0a8bc883 100644
--- a/ports/rp2/boards/ARDUINO_NANO_RP2040_CONNECT/manifest.py
+++ b/ports/rp2/boards/ARDUINO_NANO_RP2040_CONNECT/manifest.py
@@ -11,4 +11,4 @@ require("espflash")
require("logging")
# Bluetooth
-require("aioble", client=True, central=True, l2cap=True, security=True)
+require("aioble")