Skip to content
Snippets Groups Projects
Commit 195ea9d3 authored by minute's avatar minute
Browse files

Merge branch 'keyboardv4-reset-key_k' into 'master'

reform2-keyboard4-fw: use k for keyboard reset

See merge request !75
parents e524c070 691bb056
No related branches found
No related tags found
No related merge requests found
Pipeline #3214 failed
......@@ -31,7 +31,7 @@ const MenuItem menu_items[] = {
{ "Key Saturation- F5", KEY_F5 },
{ "Key Saturation+ F6", KEY_F6 },
{ "System Status s", KEY_S },
{ "Reset Keyboard r", KEY_R },
{ "Reset Keyboard k", KEY_K },
{ "USB Flashing Mode x", KEY_X },
};
#else
......@@ -50,7 +50,7 @@ const MenuItem menu_items[] = {
{ "Key Saturation+ F6", KEY_F6 },
{ "Wake SPC", KEY_SPACE },
{ "System Status s", KEY_S },
{ "Reset Keyboard r", KEY_R },
{ "Reset Keyboard k", KEY_K },
};
#endif
......@@ -122,7 +122,7 @@ int execute_menu_function(int keycode) {
}
return 0;
}
else if (keycode == KEY_R) {
else if (keycode == KEY_K) {
// reset the MCU
rp2040_reset();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment