diff options
author | Drashna Jaelre <drashna@live.com> | 2021-09-29 11:37:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-29 11:37:11 -0700 |
commit | 02ab7b1888e6572178543ca0b944e4fa14cdf974 (patch) | |
tree | 345253f0cd00476d31de5cd82eedc2b4354a58b9 /tests/test_common | |
parent | 1e54796f0cf469e2c1fdd880cc288b04e7b83985 (diff) | |
download | qmk_firmware-02ab7b1888e6572178543ca0b944e4fa14cdf974.tar.gz qmk_firmware-02ab7b1888e6572178543ca0b944e4fa14cdf974.zip |
[Core] Fix "6kro enable" and clarify naming (#14563)
* Fix USB_6KRO_ENABLE compilation errors
* Add info to docs
* Rename define to be more accurate
* Remove unused rule
* Refixe docs
Diffstat (limited to 'tests/test_common')
-rw-r--r-- | tests/test_common/keyboard_report_util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_common/keyboard_report_util.cpp b/tests/test_common/keyboard_report_util.cpp index cb044c92b3..f73cf239e0 100644 --- a/tests/test_common/keyboard_report_util.cpp +++ b/tests/test_common/keyboard_report_util.cpp @@ -24,7 +24,7 @@ std::vector<uint8_t> get_keys(const report_keyboard_t& report) { std::vector<uint8_t> result; #if defined(NKRO_ENABLE) # error NKRO support not implemented yet -#elif defined(USB_6KRO_ENABLE) +#elif defined(RING_BUFFERED_6KRO_REPORT_ENABLE) # error 6KRO support not implemented yet #else for (size_t i = 0; i < KEYBOARD_REPORT_KEYS; i++) { |