summaryrefslogtreecommitdiff
path: root/shared-bindings
diff options
context:
space:
mode:
authorDan Halbert <halbert@halwitz.org>2020-08-21 17:03:45 -0400
committerDan Halbert <halbert@halwitz.org>2020-08-21 17:03:45 -0400
commit770c204d5a283add29e03e421490e1d5b9663f3c (patch)
tree799a36e9f0e5111ec6395aaf96664933cba77f01 /shared-bindings
parent6553628fcb66134d43edf1ce8b02f0e010bf57ea (diff)
sphinx fixes
Diffstat (limited to 'shared-bindings')
-rw-r--r--shared-bindings/_bleio/Adapter.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/shared-bindings/_bleio/Adapter.c b/shared-bindings/_bleio/Adapter.c
index 8f96d13ea..5b67a9ae9 100644
--- a/shared-bindings/_bleio/Adapter.c
+++ b/shared-bindings/_bleio/Adapter.c
@@ -73,11 +73,10 @@
//| def hci_uart_init(self, *, uart: busio.UART, rts: digitalio.DigitalInOut, cts: digitalio.DigitalInOut, baudrate: int = 115200, buffer_size: int = 256) -> None:
//| """On boards that do not have native BLE, you can an use HCI co-processor.
-//| Call `_bleio.adapter.hci_uart_init()` passing it the uart and pins used to communicate
-//| with the co-processor, such as an Adafruit AirLift.
+//| Pass the uart and pins used to communicate with the co-processor, such as an Adafruit AirLift.
//| The co-processor must have been reset and put into BLE mode beforehand
//| by the appropriate pin manipulation.
-//| The `uart`, `rts`, and `cts` objects are used to
+//| The ``uart``, ``rts``, and ``cts`` objects are used to
//| communicate with the HCI co-processor in HCI mode.
//|
//| The `_bleio.adapter` object is enabled during this call.