mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-17 01:14:48 +00:00
0206bd9df3
* add bluepill mcu to splittest * fix typo * refactoring * mcu config goes to mcuconf.h of keyboard * keymap specific config goes to keymap config.h * keyboard specific depending of keymap goes to post_config.h * Apply suggested change Co-authored-by: Ryan <fauxpark@gmail.com> * Apply suggested change Co-authored-by: Ryan <fauxpark@gmail.com> * Apply suggested change Co-authored-by: Ryan <fauxpark@gmail.com> * Apply suggested change Co-authored-by: Ryan <fauxpark@gmail.com> * Apply suggested change Co-authored-by: Ryan <fauxpark@gmail.com> * splittest/bluepill: improve documentation Co-authored-by: Ryan <fauxpark@gmail.com>
16 lines
No EOL
398 B
C
16 lines
No EOL
398 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 |