diff --git a/users/plodah/functions/textfns.c b/users/plodah/functions/textfns.c index 3b53b7fc09..11a0a4fcea 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