From 04b25c5a1553be2159e6f2e408e12ae6bfa9539f Mon Sep 17 00:00:00 2001 From: Florian Date: Thu, 8 Aug 2024 15:36:35 +0700 Subject: [PATCH] fix: ignore unset packets on LUFA --- keyboards/zsa/common/oryx.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/keyboards/zsa/common/oryx.c b/keyboards/zsa/common/oryx.c index 2991fd213e..d8bf300a6c 100644 --- a/keyboards/zsa/common/oryx.c +++ b/keyboards/zsa/common/oryx.c @@ -33,7 +33,9 @@ void raw_hid_send_oryx(uint8_t *data, uint8_t length) { return; } if (!send_report(RAW_EP_NAME, data, length)) { + #if !defined(PROTOCOL_LUFA) rawhid_state.paired = false; + #endif } }