[Keyboard] Fix compilation issues for Charybdis/Dilemma (#17791)
* [Keyboard] Fix debug printing for Charybdis/Dilemma * Fix compliation issue for dilemmamaster
parent
77ed0feebe
commit
928bbded6d
|
@ -243,10 +243,10 @@ static void debug_charybdis_config_to_console(charybdis_config_t* config) {
|
|||
dprintf("(charybdis) process_record_kb: config = {\n"
|
||||
"\traw = 0x%X,\n"
|
||||
"\t{\n"
|
||||
"\t\tis_dragscroll_enabled=%b\n"
|
||||
"\t\tis_sniping_enabled=%b\n"
|
||||
"\t\tdefault_dpi=0x%X (%ld)\n"
|
||||
"\t\tsniping_dpi=0x%X (%ld)\n"
|
||||
"\t\tis_dragscroll_enabled=%u\n"
|
||||
"\t\tis_sniping_enabled=%u\n"
|
||||
"\t\tdefault_dpi=0x%X (%u)\n"
|
||||
"\t\tsniping_dpi=0x%X (%u)\n"
|
||||
"\t}\n"
|
||||
"}\n",
|
||||
config->raw, config->is_dragscroll_enabled, config->is_sniping_enabled, config->pointer_default_dpi, get_pointer_default_dpi(config), config->pointer_sniping_dpi, get_pointer_sniping_dpi(config));
|
||||
|
@ -314,7 +314,9 @@ bool process_record_kb(uint16_t keycode, keyrecord_t* record) {
|
|||
}
|
||||
# endif // !MOUSEKEY_ENABLE
|
||||
# endif // POINTING_DEVICE_ENABLE
|
||||
debug_charybdis_config_to_console(&g_charybdis_config);
|
||||
if ((keycode >= POINTER_DEFAULT_DPI_FORWARD && keycode < CHARYBDIS_SAFE_RANGE) || IS_MOUSEKEY(keycode)) {
|
||||
debug_charybdis_config_to_console(&g_charybdis_config);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
@ -246,10 +246,10 @@ static void debug_dilemma_config_to_console(dilemma_config_t* config) {
|
|||
dprintf("(dilemma) process_record_kb: config = {\n"
|
||||
"\traw = 0x%X,\n"
|
||||
"\t{\n"
|
||||
"\t\tis_dragscroll_enabled=%b\n"
|
||||
"\t\tis_sniping_enabled=%b\n"
|
||||
"\t\tdefault_dpi=0x%X (%ld)\n"
|
||||
"\t\tsniping_dpi=0x%X (%ld)\n"
|
||||
"\t\tis_dragscroll_enabled=%u\n"
|
||||
"\t\tis_sniping_enabled=%u\n"
|
||||
"\t\tdefault_dpi=0x%X (%u)\n"
|
||||
"\t\tsniping_dpi=0x%X (%u)\n"
|
||||
"\t}\n"
|
||||
"}\n",
|
||||
config->raw, config->is_dragscroll_enabled, config->is_sniping_enabled, config->pointer_default_dpi, get_pointer_default_dpi(config), config->pointer_sniping_dpi, get_pointer_sniping_dpi(config));
|
||||
|
@ -308,6 +308,9 @@ bool process_record_kb(uint16_t keycode, keyrecord_t* record) {
|
|||
# endif // !NO_DILEMMA_KEYCODES
|
||||
# endif // POINTING_DEVICE_ENABLE
|
||||
debug_dilemma_config_to_console(&g_dilemma_config);
|
||||
if ((keycode >= POINTER_DEFAULT_DPI_FORWARD && keycode < DILEMMA_SAFE_RANGE) || IS_MOUSEKEY(keycode)) {
|
||||
debug_dilemma_config_to_console(&g_dilemma_config);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
@ -21,3 +21,5 @@ POINTING_DEVICE_DRIVER = cirque_pinnacle_i2c
|
|||
|
||||
SPLIT_KEYBOARD = yes
|
||||
LAYOUTS = split_3x5_2
|
||||
|
||||
DEFAULT_FOLDER = bastardkb/dilemma/splinky
|
||||
|
|
Loading…
Reference in New Issue