Source code for poseyctrl.patch.nordic

# SPDX-FileCopyrightText: 2019 Dan Halbert for Adafruit Industries
# SPDX-FileCopyrightText: 2019 Scott Shawcroft for Adafruit Industries
#
# SPDX-License-Identifier: MIT

"""
`nordic`
====================================================

This module provides Services used by Nordic Semiconductors.

"""

from adafruit_ble.services import Service
from adafruit_ble.uuid import VendorUUID
from adafruit_ble.characteristics.stream import StreamOut, StreamIn


[docs]class UARTService(Service): """ Provide UART-like functionality via the Nordic NUS service. """ # pylint: disable=no-member # ATW: The Adafruit library has egregiously small buffers that, # because of how the class is instantiated, can't be enlarged # after the fact, so we need this patch. uuid = VendorUUID("6E400001-B5A3-F393-E0A9-E50E24DCCA9E") _server_tx = StreamOut( uuid=VendorUUID("6E400003-B5A3-F393-E0A9-E50E24DCCA9E"), timeout=1.0, # buffer_size=64, buffer_size=10*1024, ) _server_rx = StreamIn( uuid=VendorUUID("6E400002-B5A3-F393-E0A9-E50E24DCCA9E"), timeout=1.0, # buffer_size=64, buffer_size=10*1024, ) def __init__(self, service=None): super().__init__(service=service) self.connectable = True if not service: self._rx = self._server_rx self._tx = self._server_tx else: # If we're a client then swap the characteristics we use. self._tx = self._server_rx self._rx = self._server_tx
[docs] def read(self, nbytes=None): """ Read characters. If ``nbytes`` is specified then read at most that many bytes. Otherwise, read everything that arrives until the connection times out. Providing the number of bytes expected is highly recommended because it will be faster. :return: Data read :rtype: bytes or None """ return self._rx.read(nbytes)
[docs] def readinto(self, buf, nbytes=None): """ Read bytes into the ``buf``. If ``nbytes`` is specified then read at most that many bytes. Otherwise, read at most ``len(buf)`` bytes. :return: number of bytes read and stored into ``buf`` :rtype: int or None (on a non-blocking error) """ return self._rx.readinto(buf, nbytes)
[docs] def readline(self): """ Read a line, ending in a newline character. :return: the line read :rtype: bytes or None """ return self._rx.readline()
@property def in_waiting(self): """The number of bytes in the input buffer, available to be read.""" return self._rx.in_waiting
[docs] def reset_input_buffer(self): """Discard any unread characters in the input buffer.""" self._rx.reset_input_buffer()
[docs] def write(self, buf): """Write a buffer of bytes.""" self._tx.write(buf)

Last update: May 05, 2023