-
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.
- Loading branch information
1 parent
b804f25
commit f3f6596
Showing
5 changed files
with
22 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +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_nkro(report_nkro_t *report) | ||
void kb_send_nkro(__xdata report_nkro_t *report) | ||
{ | ||
usb_send_nkro(report); | ||
} | ||
|
||
void kb_send_extra(report_extra_t *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,17 +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_nkro(report_nkro_t *report) | ||
void kb_send_nkro(__xdata report_nkro_t *report) | ||
{ | ||
usb_send_nkro(report); | ||
} | ||
|
||
void kb_send_extra(report_extra_t *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