Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Consolidated sequential writes #31

Merged
merged 2 commits into from
Mar 13, 2024
Merged
Changes from all 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
62 changes: 32 additions & 30 deletions adafruit_si5351.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,17 +161,18 @@ def frequency(self) -> int:

def _configure_registers(self, p1: int, p2: int, p3: int) -> None:
# Update PLL registers.
# The datasheet is a nightmare of typos and inconsistencies here!
self._si5351._write_u8(self._base, (p3 & 0x0000FF00) >> 8)
self._si5351._write_u8(self._base + 1, (p3 & 0x000000FF))
self._si5351._write_u8(self._base + 2, (p1 & 0x00030000) >> 16)
self._si5351._write_u8(self._base + 3, (p1 & 0x0000FF00) >> 8)
self._si5351._write_u8(self._base + 4, (p1 & 0x000000FF))
self._si5351._write_u8(
self._base + 5, ((p3 & 0x000F0000) >> 12) | ((p2 & 0x000F0000) >> 16)
)
self._si5351._write_u8(self._base + 6, (p2 & 0x0000FF00) >> 8)
self._si5351._write_u8(self._base + 7, (p2 & 0x000000FF))
with self._si5351._device as i2c:
buf = self._si5351._BUFFER
buf[0] = self._base
buf[1] = (p3 & 0x0000FF00) >> 8
buf[2] = p3 & 0x000000FF
buf[3] = (p1 & 0x00030000) >> 16
buf[4] = (p1 & 0x0000FF00) >> 8
buf[5] = p1 & 0x000000FF
buf[6] = ((p3 & 0x000F0000) >> 12) | ((p2 & 0x000F0000) >> 16)
buf[7] = (p2 & 0x0000FF00) >> 8
buf[8] = p2 & 0x000000FF
i2c.write(buf, end=9)
# Reset both PLLs.
self._si5351._write_u8(_SI5351_REGISTER_177_PLL_RESET, (1 << 7) | (1 << 5))

Expand Down Expand Up @@ -311,16 +312,18 @@ def r_divider(self, divider: int) -> None:

def _configure_registers(self, p1: int, p2: int, p3: int) -> None:
# Update MSx registers.
self._si5351._write_u8(self._base, (p3 & 0x0000FF00) >> 8)
self._si5351._write_u8(self._base + 1, (p3 & 0x000000FF))
self._si5351._write_u8(self._base + 2, (p1 & 0x00030000) >> 16)
self._si5351._write_u8(self._base + 3, (p1 & 0x0000FF00) >> 8)
self._si5351._write_u8(self._base + 4, (p1 & 0x000000FF))
self._si5351._write_u8(
self._base + 5, ((p3 & 0x000F0000) >> 12) | ((p2 & 0x000F0000) >> 16)
)
self._si5351._write_u8(self._base + 6, (p2 & 0x0000FF00) >> 8)
self._si5351._write_u8(self._base + 7, (p2 & 0x000000FF))
with self._si5351._device as i2c:
buf = self._si5351._BUFFER
buf[0] = self._base
buf[1] = (p3 & 0x0000FF00) >> 8
buf[2] = p3 & 0x000000FF
buf[3] = (p1 & 0x00030000) >> 16
buf[4] = (p1 & 0x0000FF00) >> 8
buf[5] = p1 & 0x000000FF
buf[6] = ((p3 & 0x000F0000) >> 12) | ((p2 & 0x000F0000) >> 16)
buf[7] = (p2 & 0x0000FF00) >> 8
buf[8] = p2 & 0x000000FF
i2c.write(buf, end=9)

def configure_integer(
self, pll: "PLL", divider: int, inverted: bool = False
Expand Down Expand Up @@ -406,22 +409,21 @@ def configure_fractional(

# Class-level buffer to reduce allocations and heap fragmentation.
# This is not thread-safe or re-entrant by design!
_BUFFER = bytearray(2)
_BUFFER = bytearray(9)

def __init__(self, i2c: I2C, *, address: int = _SI5351_ADDRESS) -> None:
self._device = i2c_device.I2CDevice(i2c, address)
# Setup the SI5351.
# Disable all outputs setting CLKx_DIS high.
self._write_u8(_SI5351_REGISTER_3_OUTPUT_ENABLE_CONTROL, 0xFF)
# Power down all output drivers
self._write_u8(_SI5351_REGISTER_16_CLK0_CONTROL, 0x80)
self._write_u8(_SI5351_REGISTER_17_CLK1_CONTROL, 0x80)
self._write_u8(_SI5351_REGISTER_18_CLK2_CONTROL, 0x80)
self._write_u8(_SI5351_REGISTER_19_CLK3_CONTROL, 0x80)
self._write_u8(_SI5351_REGISTER_20_CLK4_CONTROL, 0x80)
self._write_u8(_SI5351_REGISTER_21_CLK5_CONTROL, 0x80)
self._write_u8(_SI5351_REGISTER_22_CLK6_CONTROL, 0x80)
self._write_u8(_SI5351_REGISTER_23_CLK7_CONTROL, 0x80)
# Class-level buffer to reduce allocations and heap fragmentation.
# This is not thread-safe or re-entrant by design!
with self._device as i2c_bus:
self._BUFFER[0] = _SI5351_REGISTER_16_CLK0_CONTROL
for i in range(1, 9):
self._BUFFER[i] = 0x80
i2c_bus.write(self._BUFFER, end=9)
# Initialize PLL A and B objects.
self.pll_a = self._PLL(self, 26, 0)
self.pll_b = self._PLL(self, 34, (1 << 5))
Expand Down
Loading