| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- // Copyright 2022 Kyle McCreery (@kylemccreery)
- // SPDX-License-Identifier: GPL-2.0-or-later
-
- #pragma once
- /* allows the "key" button on the blackpill to toggle caps lock for user testing before soldering */
- #define DIP_SWITCH_PINS { A0 }
- /*
- * Keyboard Matrix Assignments
- *
- * Change this to how you wired your keyboard
- * COLS: AVR pins used for columns, left to right
- * ROWS: AVR pins used for rows, top to bottom
- * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
- * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
- *
- */
- #define MATRIX_ROW_PINS { B12, B10, B13, B1, B14 }
- #define MATRIX_COL_PINS { B0, A7, A6, A5, A4, A3 }
- /* COL2ROW, ROW2COL */
- #define DIODE_DIRECTION COL2ROW
- /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
- #define LOCKING_SUPPORT_ENABLE
- /* Locking resynchronize hack */
- #define LOCKING_RESYNC_ENABLE
- #define FORCE_NKRO
- /*
- * Feature disable options
- * These options are also useful to firmware size reduction.
- */
- /* disable debug print */
- //#define NO_DEBUG
- /* disable print */
- //#define NO_PRINT
- /* disable action features */
- //#define NO_ACTION_LAYER
- //#define NO_ACTION_TAPPING
- //#define NO_ACTION_ONESHOT
|