From eb42b48c22e584755580b6eec6f85a73072fa3ad Mon Sep 17 00:00:00 2001 From: Hayley Hughes Date: Sun, 18 Feb 2024 17:25:35 +1100 Subject: [PATCH] Fix row 5 enable pin --- keyboards/ducky/one2sf/1967st/1967st.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/keyboards/ducky/one2sf/1967st/1967st.c b/keyboards/ducky/one2sf/1967st/1967st.c index fda822defbb..998dda3b54a 100644 --- a/keyboards/ducky/one2sf/1967st/1967st.c +++ b/keyboards/ducky/one2sf/1967st/1967st.c @@ -419,7 +419,7 @@ void MBIA045_disable_rows(void) { PB2 = PAL_LOW; // Row 4 - PD9 = PAL_LOW; + PD8 = PAL_LOW; } /** @@ -441,7 +441,7 @@ void MBIA045_select_row(int row) { PB2 = PAL_HIGH; break; case 4: // Row 4 - PD9 = PAL_HIGH; + PD8 = PAL_HIGH; break; } }