core: fix compilation issues with USB programmable buttons (#14454)

Reported here:
https://github.com/qmk/qmk_firmware/pull/12950#issuecomment-920329569
master
Thomas Weißschuh 2021-09-15 22:28:19 +02:00 committed by GitHub
parent a677f00502
commit 58d72ad795
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -761,6 +761,7 @@ static void send_mouse(report_mouse_t *report) {
#endif
}
#if defined(EXTRAKEY_ENABLE) || defined(PROGRAMMABLE_BUTTON_ENABLE)
static void send_report(void *report, size_t size) {
uint8_t timeout = 255;
@ -775,6 +776,7 @@ static void send_report(void *report, size_t size) {
Endpoint_Write_Stream_LE(report, size, NULL);
Endpoint_ClearIN();
}
#endif
/** \brief Send Extra
*