sphinx fixes

This commit is contained in:
Dan Halbert 2020-08-21 17:03:45 -04:00
parent 6553628fcb
commit 770c204d5a
1 changed files with 2 additions and 3 deletions

View File

@ -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.