From d5a979df1844289ba69c7f1127a1d7bcb8cbf48e Mon Sep 17 00:00:00 2001 From: foamyguy Date: Fri, 1 Aug 2025 10:25:02 -0500 Subject: [PATCH] correct active3 pinouts --- src/include/piomatter/pins.h | 38 ++++++++++++++++++------------------ 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/src/include/piomatter/pins.h b/src/include/piomatter/pins.h index 3be6675..6e1b626 100644 --- a/src/include/piomatter/pins.h +++ b/src/include/piomatter/pins.h @@ -41,25 +41,6 @@ struct adafruit_matrix_bonnet_pinout_bgr { }; struct active3_pinout { - static constexpr pin_t PIN_RGB[] = {7, 27, 11, 10, 9, 8, 6, 5, 12, - 20, 13, 19, 3, 2, 14, 21, 16, 26}; - static constexpr pin_t PIN_ADDR[] = {22, 23, 24, 25, 15}; - static constexpr pin_t PIN_OE = 18; // /OE: output enable when LOW - static constexpr pin_t PIN_CLK = 17; // SRCLK: clocks on RISING edge - static constexpr pin_t PIN_LAT = 4; // RCLK: latches on RISING edge - - static constexpr uint32_t clk_bit = 1u << PIN_CLK; - static constexpr uint32_t lat_bit = 1u << PIN_LAT; - static constexpr uint32_t oe_bit = 1u << PIN_OE; - static constexpr uint32_t oe_active = 0; - static constexpr uint32_t oe_inactive = oe_bit; - - static constexpr uint32_t post_oe_delay = 0; - static constexpr uint32_t post_latch_delay = 0; - static constexpr uint32_t post_addr_delay = 5; -}; - -struct active3_pinout_bgr { static constexpr pin_t PIN_RGB[] = {11, 27, 7, 8, 9, 10, 12, 5, 6, 19, 13, 20, 14, 2, 3, 26, 16, 21}; static constexpr pin_t PIN_ADDR[] = {22, 23, 24, 25, 15}; @@ -78,4 +59,23 @@ struct active3_pinout_bgr { static constexpr uint32_t post_addr_delay = 5; }; +struct active3_pinout_bgr { + static constexpr pin_t PIN_RGB[] = {7, 27, 11, 10, 9, 8, 6, 5, 12, + 20, 13, 19, 3, 2, 14, 21, 16, 26}; + static constexpr pin_t PIN_ADDR[] = {22, 23, 24, 25, 15}; + static constexpr pin_t PIN_OE = 18; // /OE: output enable when LOW + static constexpr pin_t PIN_CLK = 17; // SRCLK: clocks on RISING edge + static constexpr pin_t PIN_LAT = 4; // RCLK: latches on RISING edge + + static constexpr uint32_t clk_bit = 1u << PIN_CLK; + static constexpr uint32_t lat_bit = 1u << PIN_LAT; + static constexpr uint32_t oe_bit = 1u << PIN_OE; + static constexpr uint32_t oe_active = 0; + static constexpr uint32_t oe_inactive = oe_bit; + + static constexpr uint32_t post_oe_delay = 0; + static constexpr uint32_t post_latch_delay = 0; + static constexpr uint32_t post_addr_delay = 5; +}; + } // namespace piomatter