Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
147 changes: 147 additions & 0 deletions adafruit_register/register_accessor.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,147 @@
# SPDX-FileCopyrightText: Copyright (c) 2022 Max Holliday
# SPDX-FileCopyrightText: Copyright (c) 2025 Tim Cocks for Adafruit Industries
#
# SPDX-License-Identifier: MIT
"""
`adafruit_register.register_accessor`
====================================================

SPI and I2C Register Accessor classes.

* Author(s): Max Holliday
* Adaptation by Tim Cocks
"""

__version__ = "0.0.0+auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_Register.git"

try:
from typing import Union

from adafruit_bus_device.i2c_device import I2CDevice
from adafruit_bus_device.spi_device import SPIDevice
except ImportError:
pass


class RegisterAccessor:
def _pack_address_into_buffer(self, address, lsb_first, buffer):
# Pack address into the buffer
for i in range(self.address_width):
if lsb_first:
# Little-endian: least significant byte first
buffer[i] = (address >> (i * 8)) & 0xFF
else:
# Big-endian: most significant byte first
buffer[i] = (address >> ((address - 1 - i) * 8)) & 0xFF


class SPIRegisterAccessor(RegisterAccessor):
"""
RegisterAccessor class for SPI bus transport. Provides interface to read/write
registers over SPI.

:param SPIDevice spi_device: The SPI bus device to communicate over.
:param int address_width: The number of bytes in the address
"""

def __init__(self, spi_device: SPIDevice, address_width: int = 1):
self.address_width = address_width
self.spi_device = spi_device

def _shift_rw_cmd_bit_into_address_byte(self, buffer, bit_value):
if bit_value not in {0, 1}:
raise ValueError("bit_value must be 0 or 1")

# Clear the MSB (set bit 7 to 0)
cleared_byte = buffer[0] & 0x7F
# Set the MSB to the desired bit value
buffer[0] = cleared_byte | (bit_value << 7)

def read_register(self, address: int, lsb_first: bool, buffer: bytearray):
"""
Read register value over SPIDevice.

:param int address: The register address to read.
:param bool lsb_first: Is the first byte we read from the bus the LSB?
:param bytearray buffer: Buffer that will be used to write/read register data.
`address` will be put into the first `address_width` bytes of the buffer, data
will be read into the buffer following the address.
Buffer must be long enough to be read all data sent by the device.
:return: None
"""

self._pack_address_into_buffer(address, lsb_first, buffer)
self._shift_rw_cmd_bit_into_address_byte(buffer, 1)
with self.spi_device as spi:
spi.write(buffer, end=self.address_width)
spi.readinto(buffer, start=self.address_width)

def write_register(
self,
address: int,
lsb_first: bool,
buffer: bytearray,
):
"""
Write register value over SPIDevice.

:param int address: The register address to read.
:param bool lsb_first: Is the first byte we read from the bus the LSB?
:param bytearray buffer: Buffer that will be written to the register.
`address` will be put into the first `address_width` bytes of the buffer
:return: None
"""
self._pack_address_into_buffer(address, lsb_first, buffer)
self._shift_rw_cmd_bit_into_address_byte(buffer, 0)
with self.spi_device as spi:
self._shift_rw_cmd_bit_into_address_byte(buffer, 0)
spi.write(buffer)


class I2CRegisterAccessor(RegisterAccessor):
"""
RegisterAccessor class for I2C bus transport. Provides interface to read/write
registers over I2C

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here, explain the protocol over I2C that this supports.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also talk about the relationship between address and data.

:param I2CDevice i2c_device: I2C device to communicate over
:param int address_width: The number of bytes in the address
"""

def __init__(self, i2c_device: I2CDevice, address_width: int = 1):
self.i2c_device = i2c_device
self.address_width = address_width

def read_register(self, address: int, lsb_first: bool, buffer: bytearray):
"""
Read register value over I2CDevice.

:param int address: The register address to read.
:param bool lsb_first: Is the first byte we read from the bus the LSB? Defaults to true
:param bytearray buffer: Buffer that will be used to write/read register data.
address will be put into the first `address_width` bytes of the buffer, data
will be read into the buffer following the address.
Buffer must be long enough to be read all data sent by the device.
:return: None
"""

self._pack_address_into_buffer(address, lsb_first, buffer)
with self.i2c_device as i2c:
i2c.write_then_readinto(
buffer, buffer, out_end=self.address_width, in_start=self.address_width
)

def write_register(self, address: int, lsb_first: bool, buffer: bytearray):
"""
Write register value over I2CDevice.

:param int address: The register address to read.
:param bool lsb_first: Is the first byte we read from the bus the LSB? Defaults to true
:param bytearray buffer: Buffer must have register address value at index 0.
Must be long enough to be read all data send by the device for specified register.

:return: None
"""
self._pack_address_into_buffer(address, lsb_first, buffer)
with self.i2c_device as i2c:
i2c.write(buffer)
88 changes: 88 additions & 0 deletions adafruit_register/register_bit.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
# SPDX-FileCopyrightText: Copyright (c) 2025 Tim Cocks for Adafruit Industries
#
# SPDX-License-Identifier: MIT
"""
`adafruit_register.register_bit`
====================================================

Single bit registers that use RegisterAccessor

* Author(s): Tim Cocks

"""

__version__ = "0.0.0+auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_Register.git"


class RWBit:
"""
Single bit register that is readable and writeable.

Values are `bool`

:param int register_address: The register address to read the bit from
:param int bit: The bit index within the byte at ``register_address``
:param int register_width: The number of bytes in the register. Defaults to 1.
:param bool lsb_first: Is the first byte we read from spi the LSB? Defaults to true

"""

def __init__(
self,
register_address: int,
bit: int,
register_width: int = 1,
lsb_first: bool = True,
address_width: int = 1,
):
self.bit_mask = 1 << (bit % 8) # the bitmask *within* the byte!

self.address = register_address

self.address_width = address_width
self.buffer = bytearray(address_width + register_width)

self.lsb_first = lsb_first
self.bit_index = bit
if lsb_first:
self.byte = address_width + (bit // 8) # Little-endian: bit 0 in first register byte
else:
self.byte = (
address_width + register_width - 1 - (bit // 8)
) # Big-endian: bit 0 in last register byte

def __get__(self, obj, objtype=None):
# read data from register
obj.register_accessor.read_register(self.address, self.lsb_first, self.buffer)

# check specified bit and return boolean
return bool(self.buffer[self.byte] & self.bit_mask)

def __set__(self, obj, value):
# read current data from register
obj.register_accessor.read_register(self.address, self.lsb_first, self.buffer)

# update current data with new value
if value:
self.buffer[self.byte] |= self.bit_mask
else:
self.buffer[self.byte] &= ~self.bit_mask

# write updated data to register
obj.register_accessor.write_register(self.address, self.lsb_first, self.buffer)


class ROBit(RWBit):
"""Single bit register that is read only. Subclass of `RWBit`.

Values are `bool`

:param int register_address: The register address to read the bit from
:param type bit: The bit index within the byte at ``register_address``
:param int register_width: The number of bytes in the register. Defaults to 1.

"""

def __set__(self, obj, value):
raise AttributeError()
110 changes: 110 additions & 0 deletions adafruit_register/register_bits.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
# SPDX-FileCopyrightText: Copyright (c) 2025 Tim Cocks for Adafruit Industries
#
# SPDX-License-Identifier: MIT
"""
`adafruit_register.register_bits`
====================================================

Multi bit registers

* Author(s): Tim Cocks

"""

__version__ = "0.0.0+auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_Register.git"


class RWBits:
"""
Multibit register (less than a full byte) that is readable and writeable.
This must be within a byte register.

Values are `int` between 0 and 2 ** ``num_bits`` - 1.

:param int num_bits: The number of bits in the field.
:param int register_address: The register address to read the bit from
:param int lowest_bit: The lowest bits index within the byte at ``register_address``
:param int register_width: The number of bytes in the register. Defaults to 1.
:param bool lsb_first: Is the first byte we read from the bus the LSB? Defaults to true
:param int address_width: The width of the register address in bytes. Defaults to 1.
"""

# pylint: disable=too-many-arguments
def __init__(
self,
num_bits: int,
register_address: int,
lowest_bit: int,
register_width: int = 1,
lsb_first: bool = True,
address_width: int = 1,
):
self.bit_mask = ((1 << num_bits) - 1) << lowest_bit

if self.bit_mask >= 1 << (register_width * 8):
raise ValueError("Cannot have more bits than register size")
self.lowest_bit = lowest_bit

self.address_width = address_width
self.address = register_address
self.buffer = bytearray(address_width + register_width)

# self.buffer[1] = register_width - 1
self.lsb_first = lsb_first

def __get__(self, obj, objtype=None):
# read data from register
obj.register_accessor.read_register(self.address, self.lsb_first, self.buffer)

# read the bytes into a single variable
reg = 0
order = range(len(self.buffer) - 1, self.address_width - 1, -1)
if not self.lsb_first:
order = reversed(order)
for i in order:
reg = (reg << 8) | self.buffer[i]

# extract integer value from specified bits
result = (reg & self.bit_mask) >> self.lowest_bit
return result

def __set__(self, obj, value):
# read current data from register
obj.register_accessor.read_register(self.address, self.lsb_first, self.buffer)

# shift in integer value to register data
reg = 0
order = range(len(self.buffer) - 1, self.address_width - 1, -1)
if not self.lsb_first:
order = range(1, len(self.buffer))
for i in order:
reg = (reg << 8) | self.buffer[i]
shifted_value = value << self.lowest_bit
reg &= ~self.bit_mask # mask off the bits we're about to change
reg |= shifted_value # then or in our new value

# put data from reg back into buffer
for i in reversed(order):
self.buffer[i] = reg & 0xFF
reg >>= 8

# write updated data into the register
obj.register_accessor.write_register(self.address, self.lsb_first, self.buffer)


class ROBits(RWBits):
"""
Multibit register (less than a full byte) that is read-only. This must be
within a byte register.

Values are `int` between 0 and 2 ** ``num_bits`` - 1.

:param int num_bits: The number of bits in the field.
:param int register_address: The register address to read the bit from
:param type lowest_bit: The lowest bits index within the byte at ``register_address``
:param int register_width: The number of bytes in the register. Defaults to 1.
"""

def __set__(self, obj, value):
raise AttributeError()