-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* nkro support (untested) * adjusted nkro report size, it now works * nkro through rf * nkro as a feature * fix extra keys * update readme
- Loading branch information
1 parent
12cbd53
commit 0813220
Showing
20 changed files
with
743 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
option('nkro', type : 'feature', value : 'enabled', description: 'NKRO support') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
#include "report.h" | ||
#include "usb.h" | ||
|
||
void kb_send_report(report_keyboard_t *report) | ||
void kb_send_report(__xdata report_keyboard_t *report) | ||
{ | ||
usb_send_report(report); | ||
} | ||
|
||
void kb_send_extra(report_extra_t *report) | ||
void kb_send_nkro(__xdata report_nkro_t *report) | ||
{ | ||
usb_send_nkro(report); | ||
} | ||
|
||
void kb_send_extra(__xdata report_extra_t *report) | ||
{ | ||
usb_send_extra(report); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
#include "report.h" | ||
#include "usb.h" | ||
|
||
void kb_send_report(report_keyboard_t *report) | ||
void kb_send_report(__xdata report_keyboard_t *report) | ||
{ | ||
usb_send_report(report); | ||
} | ||
|
||
void kb_send_extra(report_extra_t *report) | ||
void kb_send_nkro(__xdata report_nkro_t *report) | ||
{ | ||
usb_send_nkro(report); | ||
} | ||
|
||
void kb_send_extra(__xdata report_extra_t *report) | ||
{ | ||
usb_send_extra(report); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.