diff options
Diffstat (limited to 'tmk_core/common/report.h')
-rw-r--r-- | tmk_core/common/report.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tmk_core/common/report.h b/tmk_core/common/report.h index 6c27eb9dc..167f38275 100644 --- a/tmk_core/common/report.h +++ b/tmk_core/common/report.h | |||
@@ -84,6 +84,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
84 | #define KEYBOARD_REPORT_SIZE NKRO_EPSIZE | 84 | #define KEYBOARD_REPORT_SIZE NKRO_EPSIZE |
85 | #define KEYBOARD_REPORT_KEYS (NKRO_EPSIZE - 2) | 85 | #define KEYBOARD_REPORT_KEYS (NKRO_EPSIZE - 2) |
86 | #define KEYBOARD_REPORT_BITS (NKRO_EPSIZE - 1) | 86 | #define KEYBOARD_REPORT_BITS (NKRO_EPSIZE - 1) |
87 | #elif defined(PROTOCOL_ARM_ATSAM) | ||
88 | #include "protocol/arm_atsam/usb/udi_device_epsize.h" | ||
89 | #define KEYBOARD_REPORT_SIZE NKRO_EPSIZE | ||
90 | #define KEYBOARD_REPORT_KEYS (NKRO_EPSIZE - 2) | ||
91 | #define KEYBOARD_REPORT_BITS (NKRO_EPSIZE - 1) | ||
87 | #else | 92 | #else |
88 | #error "NKRO not supported with this protocol" | 93 | #error "NKRO not supported with this protocol" |
89 | #endif | 94 | #endif |