config_mock_split_no_left.h 508 B

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