config_mock_split_left_lt_right.h 462 B

1234567891011121314151617181920212223
  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 {0, 2}
  9. #define ENCODER_B_PINS {1, 3}
  10. #define ENCODER_A_PINS_RIGHT {4, 6, 8}
  11. #define ENCODER_B_PINS_RIGHT {5, 7, 9}
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. #include "mock_split.h"
  16. #ifdef __cplusplus
  17. };
  18. #endif