From d364cbefa0c78604c5cde3ab8d9af02a95431584 Mon Sep 17 00:00:00 2001 From: zvecr Date: Thu, 14 Mar 2024 11:45:14 +0000 Subject: [PATCH] Fix LUFA builds --- tmk_core/protocol/lufa/lufa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tmk_core/protocol/lufa/lufa.c b/tmk_core/protocol/lufa/lufa.c index 9757c17f705..ffc2911bda2 100644 --- a/tmk_core/protocol/lufa/lufa.c +++ b/tmk_core/protocol/lufa/lufa.c @@ -254,7 +254,7 @@ void xap_receive_base(const void *data) { } } -static void xap_task(void) { +void xap_task(void) { // Create a temporary buffer to hold the read in data from the host uint8_t data[XAP_EPSIZE]; bool data_read = false;