73 lines
2.0 KiB
C
73 lines
2.0 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
|
||
|
// Other options: MASTER_RIGHT
|
||
|
/* #define MASTER_LEFT */
|
||
|
// 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
|
||
|
|
||
|
// Also required for the trackball (if one wants to use MOUSE_EXT_REPORT)
|
||
|
#define SPLIT_POINTING_ENABLE
|
||
|
#define POINTING_DEVICE_LEFT
|
||
|
#define POINTING_DEVICE_ROTATION_90
|
||
|
// This option requires drashnas fork and makes the trackball a bit smoother
|
||
|
#define MOUSE_EXT_REPORT
|
||
|
|
||
|
/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
|
||
|
#define DEBOUNCE 5
|
||
|
|
||
|
/* 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
|