68 lines
1.8 KiB
C
68 lines
1.8 KiB
C
// Copyright 2022 Philip Gaber (@qhga)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
/* key matrix size */
|
|
#define MATRIX_ROWS 12
|
|
#define MATRIX_COLS 7
|
|
|
|
/*
|
|
* 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 { D4, C6, D7, E6, B4, B5 }
|
|
#define MATRIX_COL_PINS { F5, F6, F7, B1, B3, B2, B6 }
|
|
|
|
/* COL2ROW, ROW2COL */
|
|
#define DIODE_DIRECTION COL2ROW
|
|
|
|
/*
|
|
* Split Keyboard specific options, make sure you have 'SPLIT_KEYBOARD = yes' in your rules.mk, and define SOFT_SERIAL_PIN.
|
|
*/
|
|
#define SOFT_SERIAL_PIN D2 // or D1, D2, D3, E6
|
|
// Set the handedness manually
|
|
/* #define MASTER_LEFT */
|
|
/* #define MASTER_RIGHT */
|
|
|
|
// Set the handedness by writing it to EEPROM
|
|
// Plug in left side:
|
|
// sudo make snappy/rev2:default:dfu-split-left
|
|
// Plug in right side:
|
|
// sudo make snappy/rev2:default:dfu-split-right
|
|
#define EE_HANDS
|
|
|
|
/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
|
|
#define DEBOUNCE 15
|
|
#define USB_POLLING_INTERVAL_MS 1
|
|
|
|
/* 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
|
|
|
|
/*
|
|
* 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
|
|
|
|
/* Bootmagic Lite key configuration */
|
|
//#define BOOTMAGIC_LITE_ROW 0
|
|
//#define BOOTMAGIC_LITE_COLUMN 0
|