config_mock_split_role.h 448 B

1234567891011121314151617181920212223242526
  1. // Copyright 2022 Nick Brassel (@tzarc)
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. #define MATRIX_ROWS 1
  5. #define MATRIX_COLS 1
  6. /* Here, "pins" from 0 to 31 are allowed. */
  7. #define ENCODERS_PAD_A \
  8. { 0, 2 }
  9. #define ENCODERS_PAD_B \
  10. { 1, 3 }
  11. #define ENCODERS_PAD_A_RIGHT \
  12. { 4, 6 }
  13. #define ENCODERS_PAD_B_RIGHT \
  14. { 5, 7 }
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. #include "mock_split.h"
  19. #ifdef __cplusplus
  20. };
  21. #endif