diff options
| author | Nick Brassel | 2022-03-08 06:58:05 +0100 |
|---|---|---|
| committer | GitHub | 2022-03-08 06:58:05 +0100 |
| commit | 2f6751e48a37699cfd999e0afd8731ca3962611c (patch) | |
| tree | c64605c10a8f8f758f46be209d79210bbf15c167 /quantum/encoder/tests/config_mock_split_no_left.h | |
| parent | 2218690d0b718dc68de4c5d093f1ec8e55d82d00 (diff) | |
Asymmetric encoders, encoder tests. (#16068)
Diffstat (limited to 'quantum/encoder/tests/config_mock_split_no_left.h')
| -rw-r--r-- | quantum/encoder/tests/config_mock_split_no_left.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/quantum/encoder/tests/config_mock_split_no_left.h b/quantum/encoder/tests/config_mock_split_no_left.h new file mode 100644 index 0000000000..9db7fa7e41 --- /dev/null +++ b/quantum/encoder/tests/config_mock_split_no_left.h @@ -0,0 +1,26 @@ +// Copyright 2022 Nick Brassel (@tzarc) +// SPDX-License-Identifier: GPL-2.0-or-later +#pragma once + +#define MATRIX_ROWS 1 +#define MATRIX_COLS 1 + +/* Here, "pins" from 0 to 31 are allowed. */ +#define ENCODERS_PAD_A \ + {} +#define ENCODERS_PAD_B \ + {} +#define ENCODERS_PAD_A_RIGHT \ + { 0, 2 } +#define ENCODERS_PAD_B_RIGHT \ + { 1, 3 } + +#ifdef __cplusplus +extern "C" { +#endif + +#include "mock_split.h" + +#ifdef __cplusplus +}; +#endif |