Skip to content

Commit

Permalink
fix: ignore unset packets on LUFA
Browse files Browse the repository at this point in the history
  • Loading branch information
fdidron committed Aug 8, 2024
1 parent ec84919 commit 04b25c5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions keyboards/zsa/common/oryx.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}

Expand Down

0 comments on commit 04b25c5

Please sign in to comment.