You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
388 B

  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 ENCODERS_PAD_A \
  9. { 0 }
  10. #define ENCODERS_PAD_B \
  11. { 1 }
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. #include "mock.h"
  16. #ifdef __cplusplus
  17. };
  18. #endif