From d7956f0a2a3c58512567f74a147d4d4c3e96d7c7 Mon Sep 17 00:00:00 2001 From: Alice Date: Tue, 7 Jul 2026 17:21:48 +0200 Subject: [PATCH] bug: add extra clock register --- .../matterhornServer/include/MatterhornDefs.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/slsDetectorServers/matterhornServer/include/MatterhornDefs.hpp b/slsDetectorServers/matterhornServer/include/MatterhornDefs.hpp index 5b4a8602d..d49115d52 100644 --- a/slsDetectorServers/matterhornServer/include/MatterhornDefs.hpp +++ b/slsDetectorServers/matterhornServer/include/MatterhornDefs.hpp @@ -15,7 +15,7 @@ constexpr uint8_t NUM_CHIPS_PER_MODULE = 8; /// @brief list of Matterhorn SPI registers struct MatterhornSPIRegisters { - constexpr static std::array spiregisters{ + constexpr static std::array spiregisters{ SPIRegisters::SPI_REG_ConfigUnit, SPIRegisters::SPI_REG_ConfigCML, SPIRegisters::SPI_REG_ManualSelector, @@ -26,7 +26,8 @@ struct MatterhornSPIRegisters { SPIRegisters::SPI_REG_McGyver_par_load, SPIRegisters::SPI_REG_ActionReg, SPIRegisters::SPI_REG_InternalDACs, - SPIRegisters::SPI_REG_ChecksumReg}; + SPIRegisters::SPI_REG_ChecksumReg, + SPIRegisters::SPI_REG_ExtraClocks}; constexpr static uint8_t NUM_CHIPS_PER_MODULE = MatterhornDefs::NUM_CHIPS_PER_MODULE;