From baa3132cb3c4bd4b628177a72ab23bd7d37e9671 Mon Sep 17 00:00:00 2001 From: plodah Date: Mon, 9 Dec 2024 03:15:56 +0000 Subject: [PATCH] function query kc; add some other features. --- users/plodah/functions/textfns.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/users/plodah/functions/textfns.c b/users/plodah/functions/textfns.c index 3b53b7fc09e..11a0a4fcea7 100644 --- a/users/plodah/functions/textfns.c +++ b/users/plodah/functions/textfns.c @@ -64,6 +64,10 @@ strcat (str, " MOUSEKEY"); #endif // MOUSEKEY_ENABLE + #ifdef OLED_ENABLE + strcat (str, " OLED"); + #endif // OLED_ENABLE + #ifdef OS_DETECTION_ENABLE strcat (str, " OS_DETECTION"); #endif // OS_DETECTION_ENABLE @@ -84,6 +88,10 @@ strcat (str, " TAP_DANCE"); #endif // TAP_DANCE_ENABLE + #ifdef TRI_LAYER_ENABLE + strcat (str, " TRI_LAYER"); + #endif // TRI_LAYER_ENABLE + #ifdef VIA_ENABLE strcat (str, " VIA"); #endif // VIA_ENABLE @@ -150,6 +158,10 @@ send_string_with_delay (" MOUSEKEY", TAP_CODE_DELAY ); #endif // MOUSEKEY_ENABLE + #ifdef OLED_ENABLE + send_string_with_delay (" OLED", TAP_CODE_DELAY ); + #endif // OLED_ENABLE + #ifdef OS_DETECTION_ENABLE send_string_with_delay (" OS_DETECTION", TAP_CODE_DELAY ); #endif // OS_DETECTION_ENABLE @@ -170,6 +182,10 @@ send_string_with_delay (" TAP_DANCE", TAP_CODE_DELAY ); #endif // TAP_DANCE_ENABLE + #ifdef TRI_LAYER_ENABLE + send_string_with_delay (" TRI_LAYER", TAP_CODE_DELAY ); + #endif // TRI_LAYER_ENABLE + #ifdef VIA_ENABLE send_string_with_delay (" VIA", TAP_CODE_DELAY ); #endif // VIA_ENABLE