Update documentation for keys that are actually handled.

This commit is contained in:
Nick Brassel
2024-08-13 11:50:54 +10:00
parent 89ac5cb0ff
commit 2577f05cb3
3 changed files with 12 additions and 11 deletions
+2 -1
View File
@@ -7,7 +7,7 @@ bool process_connection(uint16_t keycode, keyrecord_t *record) {
if (record->event.pressed) {
switch (keycode) {
case QK_OUTPUT_NEXT:
set_output(OUTPUT_AUTO);
set_output(OUTPUT_AUTO); // This should cycle through the outputs going forward. Ensure `docs/features/bluetooth.md` is updated when it does.
return false;
case QK_OUTPUT_USB:
set_output(OUTPUT_USB);
@@ -28,6 +28,7 @@ bool process_connection(uint16_t keycode, keyrecord_t *record) {
case QK_BLUETOOTH_PROFILE4:
case QK_BLUETOOTH_PROFILE5:
// As-yet unimplemented.
// When implementation is done, ensure `docs/features/bluetooth.md` is updated accordingly.
return false;
}
}