From 841fabd4bf0ed3a2b6ff439c0cc7b247d73ac703 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20SAILLANT?= <108685187+electron-rare@users.noreply.github.com> Date: Sat, 21 Feb 2026 23:21:32 +0100 Subject: [PATCH] fix(slic): hardcode hook_active_high=true for SHK on GPIO23 --- src/main.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 8b4329e..de129d3 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -844,6 +844,13 @@ void setup() { g_features = getFeatureMatrix(g_profile); A252ConfigStore::loadPins(g_pins_cfg); + // Hard-wired SLIC mapping for live bench tests. + g_pins_cfg.slic_rm = 18; + g_pins_cfg.slic_fr = 5; + g_pins_cfg.slic_shk = 23; + g_pins_cfg.slic_line = 21; + g_pins_cfg.slic_pd = 19; + g_pins_cfg.hook_active_high = true; A252ConfigStore::loadAudio(g_audio_cfg); A252ConfigStore::loadMqtt(g_mqtt_cfg); A252ConfigStore::loadEspNowPeers(g_peer_store);