XPoint 0.1.0
Hardware-agnostic crosspoint matrix routing library
Loading...
Searching...
No Matches

Version Host Tests PlatformIO Arduino Docs Changelog

A small, hardware-agnostic C++11 library for managing crosspoint matrices and signal routing on Arduino and PlatformIO targets. Designed to work on everything from AVR (Uno/Nano) to ESP32 and ARM without pulling in the C++ standard library.

API Documentation

Features

  • connect(row, col) / disconnect(row, col) / setLevel(row, col, level) API
  • XPointStatic<ROWS, COLS> — zero-heap variant with compile-time dimensions for AVR
  • Non-blocking pulse manager for dual-coil latching relays (no blocking delay())
  • Interlock and exclusive-input protections against illegal shorting states
  • Driver abstraction (XPointDriver) — swap hardware without touching application code
  • No std::vector, no std::function, no exceptions — compatible with avr-libc

Quick Start

Add to your platformio.ini:

lib_deps = https://github.com/dstroy0/XPoint

Usage

Choosing a constructor

Heap-allocating (recommended for ESP32, STM32, native)

XPoint matrix(4, 4, RE_NON_LATCHING);
@ RE_NON_LATCHING
Energize to connect; de-energize to disconnect.
Definition XPoint.h:54
Hardware-agnostic crosspoint matrix connection manager.
Definition XPoint.h:78

Uses new[]/delete[]. Dimensions are set at runtime. Suitable for any target with adequate heap.

**XPointStatic<ROWS, COLS> (recommended for AVR / zero-heap)**

Zero-heap XPoint with a compile-time-sized embedded bit pool.
Definition XPoint.h:229

All state arrays live inside the object — no heap allocation. Dimensions must be known at compile time. Safe to declare globally on an ATmega328P.

User-buffer (maximum control)

uint32_t pool[XPoint::poolWords(4, 4)]; // 2 words for a 4×4 matrix
XPoint matrix(4, 4, pool, RE_NON_LATCHING);
static uint16_t poolWords(uint8_t rows, uint8_t cols)
Number of uint32_t words needed for a pool of the given dimensions.
Definition XPoint.h:122

Pass your own pre-allocated word array; the object does not own or free it. Use XPoint::poolWords(rows, cols) to compute the required array length.

RAM usage

Total SRAM consumed = class overhead + bit pool.

Bit pool — all three state sections (connection state, interlock map, exclusive columns) are packed into one flat uint32_t array:

Section Bits
state rows × cols
ilock rows × rows
excl cols
Total bits rows×cols + rows² + cols
Pool words ceil(total_bits / 32)
Pool bytes pool_words × 4

Common matrix sizes after bit-packing:

Matrix Total bits Pool words Pool bytes
2×8 28 1 4
4×4 36 2 8
1×12 25 1 4
4×8 56 2 8
8×8 136 5 20
8×16 208 7 28
16×16 528 17 68

Class overhead is fixed per XPoint instance, regardless of matrix size:

Platform sizeof(XPoint) sizeof(PulseEvent)
AVR (ATmega328P, 8-bit, 2-byte pointers) ~70 B 7 B (packed)
32-bit ARM / ESP32 ~80 B 7 B (packed)
64-bit host (measured) 96 B 7 B (packed)

The pulse table (PulseEvent _pulses[8]) contributes 56 B on all platforms thanks to __attribute__((packed)).

Verify on your target with:

Serial.println(sizeof(XPoint));
Serial.println(sizeof(XPointStatic<4,4>));
Serial.println(XPoint::poolWords(4, 4)); // 2 words for 4×4

Run ./test_xpoint --sizes on the host to print a full size table (also written to test/TEST_REPORT.md).

Heap vs. XPointStatic: both strategies consume the same total bytes. XPointStatic<R,C> embeds the pool buffer directly in the object (BSS / global storage), so the heap is never touched and there is no fragmentation risk.

Basic matrix operations

matrix.setDriver(&myDriver);
matrix.begin();
matrix.connect(0, 1); // connect row 0 to column 1
matrix.disconnect(0, 1); // disconnect
matrix.clearAll(); // de-energize everything
// In loop():
matrix.update(); // required for latching relays

analog level (<tt>setLevel</tt>)

setLevel(row, col, level) calls driver->setNodeLevel() instead of setNodeHardware(). Binary drivers (GPIO, shift register) treat level > 0 as on and 0 as off. PWM-capable drivers (TLC59711) set the actual fractional output:

// Binary driver — identical to connect/disconnect:
matrix.setLevel(0, 1, 0xFFFF); // full on
matrix.setLevel(0, 1, 0x8000); // treated as on (level > 0)
matrix.setLevel(0, 1, 0); // off
// TLC59711 driver — true analog control:
matrix.setLevel(0, 0, 0xFFFF); // full brightness / drive current
matrix.setLevel(0, 0, 0x4000); // 25 % — useful for hold-current reduction
matrix.setLevel(0, 0, 0); // off

Interlock and exclusive-input protections apply to setLevel the same as connect.

Interlocks and exclusive inputs

matrix.lockRows(0, 1); // row 0 and row 1 can never share a column
matrix.exclusiveInput(3); // column 3 accepts only one row at a time

Latching relay configuration

// pulseDuration in milliseconds — how long the SET/RESET coil is energized
@ RE_LATCHING_DUAL_COIL
SET coil to connect; RESET coil to disconnect.
Definition XPoint.h:55

Call matrix.update() in loop(). It de-energizes coils automatically after the pulse duration via driver->releaseNode().

Drivers

All drivers are in src/drivers/. Arduino-specific drivers compile only when ARDUINO is defined; host-side stubs are provided for testing.

Driver File Use case
ArduinoDirectGPIODriver ArduinoDirectGPIODriver.* One MCU pin per node via digitalWrite
ArduinoShiftRegisterDriver ArduinoShiftRegisterDriver.* 74HC595 chain driven by digitalWrite
MCP23017Driver MCP23017Driver.* MCP23017 16-bit I2C GPIO expander
TLC59711Driver TLC59711Driver.* TLC59711 12-channel 16-bit PWM SPI expander
TCA9548AInterface TCA9548AInterface.h I2C bus-mux decorator — transparent channel select
DirectGPIODriver DirectGPIODriver.* Virtual pin-state driver (testing / simulation)
ShiftRegisterDriver ShiftRegisterDriver.* Virtual byte-shadow shift register (testing / simulation)

ArduinoDirectGPIODriver

// mapper returns the Arduino pin number for each (row, col) node
static uint8_t mapper(uint8_t r, uint8_t c) { return (uint8_t)(2 + r * 4 + c); }
// rows, cols, mapper, maxPinIndex
ArduinoDirectGPIODriver driver(4, 4, mapper, 17);
XPointDriver implementation that calls digitalWrite() per node.
Definition ArduinoDirectGPIODriver.h:37

begin() configures only the pins your mapper actually returns, so serial/I2C/SPI pins are never disturbed.

ArduinoShiftRegisterDriver

static uint16_t mapper(uint8_t r, uint8_t c) { return (uint16_t)(r * 4 + c); }
// outputs, mapper, dataPin, clockPin, latchPin
ArduinoShiftRegisterDriver sr(16, mapper, 2, 3, 4);
XPointDriver implementation for daisy-chained 74HC595 shift registers.
Definition ArduinoShiftRegisterDriver.h:38

commitPhysicalUpdates() shifts bytes MSB-first, last register first (standard 74HC595 daisy-chain order).

MCP23017Driver

WireI2C i2c;
static uint8_t mapper(uint8_t r, uint8_t c) { return (uint8_t)(r * 4 + c); }
MCP23017Driver expander(&i2c, 0x20, mapper);
// setup():
i2c.begin();
expander.begin(); // sets IODIRA/IODIRB to all-outputs before driving OLAT
Driver for the MCP23017 16-bit I2C GPIO expander.
Arduino Wire wrapper implementing I2CInterface.
XPointDriver implementation for the MCP23017 16-bit I2C GPIO expander.
Definition MCP23017Driver.h:40
I2CInterface implementation that delegates to the Arduino Wire library.
Definition WireI2C.h:37
void begin() override
Initialize the I2C bus by calling Wire.begin().
Definition WireI2C.cpp:9

Up to 8 MCP23017s can share one I2C bus (address pins A0–A2). Use a transistor stage when driving relay coils.

TCA9548AInterface — I2C bus multiplexer

TCA9548AInterface is a decorator that wraps any I2CInterface and transparently selects a TCA9548A / PCA9548A channel before forwarding each write. Pass it as the I2CInterface* to MCP23017Driver; neither the matrix nor the driver knows a mux is present.

Capacity: one TCA9548A provides 8 segments; up to 8 TCA9548As share one bus (addresses 0x70–0x77), giving 64 segments × 8 MCP23017s per segment = 8192 I/O pins from a single I2C bus.

Performance: a per-mux channel cache (8 bytes of BSS) suppresses the channel-select byte on cache hits. After warm-up, relay operations on the same channel incur zero extra I2C transactions.

WireI2C wire;
// Two MCP23017s on channel 0 of TCA9548A at 0x70:
TCA9548AInterface ch0(&wire, 0x70, 0);
MCP23017Driver gpioA(&ch0, 0x20, mapperA);
MCP23017Driver gpioB(&ch0, 0x21, mapperB);
// A third MCP23017 on channel 1 (different segment, same address is fine):
TCA9548AInterface ch1(&wire, 0x70, 1);
MCP23017Driver gpioC(&ch1, 0x20, mapperC);
// setup():
ch0.begin(); // Wire.begin() + prime channel cache
ch1.begin(); // cache for ch1 also primed
matrixA.begin(); // IODIRA/IODIRB via mux ch0 (one channel-select, then cache hits)
matrixB.begin();
matrixC.begin(); // IODIRA/IODIRB via mux ch1
Transparent I2C bus-multiplexer adapter for the TCA9548A / PCA9548A.
I2C channel-select decorator for the TCA9548A / PCA9548A.
Definition TCA9548AInterface.h:63

No changes to XPoint, MCP23017Driver, or any other class.

TLC59711Driver

static uint16_t mapper(uint8_t r, uint8_t c) { return (uint16_t)(r * 4 + c); }
TLC59711Driver pwmDrv(1 /*chipCount*/, mapper);
// Use connect/disconnect for full on/off, or setLevel for fractional drive:
matrix.setLevel(row, col, 0x8000); // 50 % output
pwmDrv.setPWM(channel, value); // direct channel access if needed
XPointDriver implementation for the TLC59711 SPI PWM driver.
Definition TLC59711Driver.h:44

commitPhysicalUpdates() assembles the correct 28-byte-per-chip SPI packet (4-byte control word + GS11→GS0 channel order) and transfers it once.

Writing a custom driver

Inherit from XPointDriver and implement begin() and setNodeHardware(). All other methods have default no-op implementations.

class MyDriver : public XPointDriver {
public:
void begin() override {
// initialize hardware
}
void setNodeHardware(uint8_t row, uint8_t col, bool state) override {
// state=true → energize / connect
// state=false → de-energize / disconnect
// (for latching dual-coil: RESET coil direction)
}
// Optional — override for PWM-capable hardware:
void setNodeLevel(uint8_t row, uint8_t col, uint16_t level) override {
// level 0..0xFFFF
}
// Optional — override for latching relays to de-energize after pulse:
void releaseNode(uint8_t row, uint8_t col) override {
// stop driving whichever coil was pulsed
}
// Optional — override to batch-commit (e.g. latch pulse for shift registers):
void commitPhysicalUpdates() override {}
};
Abstract base class for all XPoint hardware drivers.
Definition XPointDriver.h:41
virtual void releaseNode(uint8_t, uint8_t)
De-energize the coil that was pulsed on node (r, c).
Definition XPointDriver.h:94
virtual void commitPhysicalUpdates()
Flush buffered state to hardware.
Definition XPointDriver.h:110
virtual void setNodeLevel(uint8_t r, uint8_t c, uint16_t level)
Set an analog drive level for node (r, c).
Definition XPointDriver.h:79
virtual void begin()=0
Initialize hardware: pin modes, bus setup, initial output state.
virtual void setNodeHardware(uint8_t r, uint8_t c, bool state)=0
Drive one matrix node on or off.

Latching dual-coil relay conventions

XPoint call setNodeHardware state Meaning
connect() true Pulse SET coil
disconnect() false Pulse RESET coil
update() expires releaseNode() De-energize coil

Mapper functions

Drivers take a plain C function pointer whose return type matches the driver:

Driver MapFn return type Range
ArduinoDirectGPIODriver uint8_t Arduino pin number
ArduinoShiftRegisterDriver uint16_t bit index in SR chain
MCP23017Driver uint8_t pin index 0–15
TLC59711Driver uint16_t channel index 0–(N×12)

Non-capturing lambdas convert to function pointers automatically in C++11:

// Named function (ArduinoDirectGPIODriver — uint8_t):
static uint8_t gpioMap(uint8_t r, uint8_t c) { return (uint8_t)(2 + r * 4 + c); }
// Named function (TLC59711 / shift-register — uint16_t):
static uint16_t srMap(uint8_t r, uint8_t c) { return (uint16_t)(r * COLS + c); }
// Non-capturing lambda (C++11 implicit conversion):
auto myMapper = [](uint8_t r, uint8_t c) -> uint8_t { return (uint8_t)(r * 4 + c); };

HC595Helper::rowMajorIndex(row, col, cols) computes a row-major shift-register bit index inline.

Testing

See test/TESTS.md for the full test suite description, build instructions, and mock infrastructure reference.

The suite has 49 tests across five categories (existing, limit, range, gap, json) plus one opt-in sizes test. Skip categories with --skip-<name> or use --fast to skip the 256×256 full-range sweep. Pass --sizes to add platform size measurements to the run.

./test_xpoint # all 48 tests (sizes skipped by default)
./test_xpoint --fast # skip the slow range sweep (~1 s vs ~20 s)
./test_xpoint --sizes # also print pool/object size tables

Results are written to test/TEST_REPORT.md on every run.

Project layout

src/
XPoint.h / XPoint.cpp — core matrix class + XPointStatic template
drivers/
XPointDriver.h — abstract driver interface
I2CInterface.h — abstract I2C interface
BitPool.h / BitPool.cpp — flat bit-pool for state, interlock, excl sections
TCA9548AInterface.h — I2C bus-mux decorator (header-only)
ArduinoDirectGPIODriver.* — Arduino GPIO driver
ArduinoShiftRegisterDriver.* — Arduino 74HC595 shift-out driver
MCP23017Driver.* — MCP23017 I2C expander driver
TLC59711Driver.* — TLC59711 SPI PWM driver
WireI2C.* — Arduino Wire wrapper for I2CInterface
DirectGPIODriver.* — virtual GPIO driver (host tests)
ShiftRegisterDriver.* — virtual shift-register driver (host tests)
HC595Helper.h — shift-register index utility
test/
test_xpoint.cpp — host test suite (49 tests, no framework required)
Arduino.h — minimal Arduino shim for host builds
TESTS.md — test descriptions and build instructions
TEST_REPORT.md — generated on every run; included in Doxygen docs
examples/
basic/
ConnectDisconnect/ — minimal API walkthrough: connect, clearAll, Serial log
DirectGPIO/ — 4×4 matrix via one MCU pin per node
advanced/
ShiftRegister/ — 4×4 via daisy-chained 74HC595 with interlocks
LatchingRelay/ — dual-coil latching relay with non-blocking pulse timing
MCP23017Matrix/ — 2×8 via MCP23017 I2C expander
expert/
TLC59711PWM/ — 12-channel analog level sweep via TLC59711
CustomDriver/ — implement XPointDriver from scratch (no hardware needed)
WIRING.md — wiring patterns, transistor driver circuit
schematics/ — transistor driver reference schematic
.github/workflows/ci.yml — CI: host tests + PlatformIO 8-board × 7-example matrix + Doxygen

CI

GitHub Actions runs on every push and PR to main/master:

  1. Host testsg++ compiles and runs test/test_xpoint.cpp (48 tests by default; 49 with --sizes)
  2. PlatformIO — 8 boards × 7 examples (56 parallel jobs): ATmega328P/2560/32U4, SAMD21, SAM3X8E, ESP8266, ESP32, iMXRT1062
  3. Doxygen — generates dark-themed HTML docs (including TEST_REPORT.md) and deploys to GitHub Pages

License

AGPL-3.0-only — Copyright (c) 2026 Douglas Quigg (dstroy0) <dquig.nosp@m.g123.nosp@m.@gmai.nosp@m.l.co.nosp@m.m>