Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HHKB BT sends invalid keycode when NKRO mode #169

Closed
tmk opened this issue Jan 17, 2015 · 1 comment
Closed

HHKB BT sends invalid keycode when NKRO mode #169

tmk opened this issue Jan 17, 2015 · 1 comment

Comments

@tmk
Copy link
Owner

tmk commented Jan 17, 2015

RN-42 doesn't support NKRO on Bluetooth.
LUFA protocol supports NKRO while RN-42 protocol doesn't. HHKB BT has both USB and BT protocols, swtiching to BT when NKRO mode is problem.

This is API issue?
common/host.h:

extern bool keyboard_nkro;
void host_keyboard_send(report_keyboard_t *report);
  • It should be different two interfaces for 6KRO and NKRO.
    void host_keyboard_send(report_keyboard_t *report);
    void host_keyboard_nkro_send(report_keyboard_nkro_t *report);
  • How to know if protocol supports NKRO
  • How to switch between NKRO and 6KRO
@tmk tmk added the TODO label Jan 17, 2015
@tmk tmk removed the TODO label Nov 11, 2021
@tmk
Copy link
Owner Author

tmk commented Nov 11, 2021

Blutooth controller can send 6KRO/NKRO report in USB mode and only 6KRO in BT mode.
No problem with current implementation.

@tmk tmk closed this as completed Nov 11, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant