config_mock.h 348 B

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