16 lines
399 B
C
16 lines
399 B
C
// Copyright 2022 dvermd (@dvermd)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include "config_common.h"
|
|
|
|
// wiring of each half
|
|
#define MATRIX_ROW_PINS { B10 }
|
|
#define MATRIX_COL_PINS { B1 }
|
|
|
|
#define SPLIT_HAND_PIN A7
|
|
|
|
#if !(defined(USE_SDI1_ON_STANDARD_ROLE_PINS) || defined(USE_SDI1_ON_ALTERNATE_ROLE_PINS) || defined(USE_SDI2))
|
|
#define USE_SDI1_ON_STANDARD_ROLE_PINS
|
|
#endif
|