X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=common%2Fcommand.c;h=cf8d969f8175cfa1ae789c7b0cf0e654fd17514c;hb=de8ef18a534163b40e307418b3af603142d5d6b0;hp=40932e05010e331fbf77074cdef5c5f45381e710;hpb=359b68d35f0763ab0cafa2fb800e0a3497291f95;p=max%2Ftmk_keyboard.git diff --git a/common/command.c b/common/command.c index 40932e05..cf8d969f 100644 --- a/common/command.c +++ b/common/command.c @@ -109,7 +109,7 @@ static void command_common_help(void) print("v: print device version & info\n"); print("t: print timer count\n"); print("s: print status\n"); - print("e: print eeprom config\n"); + print("e: print eeprom boot config\n"); #ifdef NKRO_ENABLE print("n: toggle NKRO\n"); #endif @@ -127,16 +127,14 @@ static void print_eeprom_config(void) { uint8_t eebyte; - print("magic: "); print_hex16(eeprom_read_word((uint16_t)0)); print("\n"); - eebyte = eeconfig_read_debug(); print("debug: "); print_hex8(eebyte); print("\n"); eebyte = eeconfig_read_defalt_layer(); print("defalt_layer: "); print_hex8(eebyte); print("\n"); - eebyte = eeconfig_read_modifier(); - print("modifiers: "); print_hex8(eebyte); print("\n"); + eebyte = eeconfig_read_keyconf(); + print("keyconf: "); print_hex8(eebyte); print("\n"); } static bool command_common(uint8_t code)