summaryrefslogtreecommitdiffstats
path: root/quantum/encoder/tests/config_mock_split_role.h
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2022-11-13 07:51:19 -0800
committerGitHub <noreply@github.com>2022-11-14 02:51:19 +1100
commit8812872794b5fb09e6bbbe47a58cc7dbcaca18a7 (patch)
treea2c955723763d3a4402fcc39df6137b4b14d25df /quantum/encoder/tests/config_mock_split_role.h
parent4c1d8a0eb33e5738f305191dfb7a56f8b0275827 (diff)
Only trigger encoder callbacks on primary side (#18467)
Co-authored-by: zvecr <git@zvecr.com>
Diffstat (limited to 'quantum/encoder/tests/config_mock_split_role.h')
-rw-r--r--quantum/encoder/tests/config_mock_split_role.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/quantum/encoder/tests/config_mock_split_role.h b/quantum/encoder/tests/config_mock_split_role.h
new file mode 100644
index 0000000000..c80ac4d519
--- /dev/null
+++ b/quantum/encoder/tests/config_mock_split_role.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 \
+ { 0, 2 }
+#define ENCODERS_PAD_B \
+ { 1, 3 }
+#define ENCODERS_PAD_A_RIGHT \
+ { 4, 6 }
+#define ENCODERS_PAD_B_RIGHT \
+ { 5, 7 }
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include "mock_split.h"
+
+#ifdef __cplusplus
+};
+#endif