2018-02-04 22:50:49 +01:00
|
|
|
/*
|
|
|
|
Copyright 2017 IslandMan93
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2019-08-23 23:23:53 +02:00
|
|
|
#pragma once
|
2018-02-04 22:50:49 +01:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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, D7, E6, B4, B5 }
|
|
|
|
#define MATRIX_COL_PINS { F4, F5, F6, F7, B1, B3, B2, B6 }
|
|
|
|
|
2019-02-18 17:49:51 +01:00
|
|
|
/* COL2ROW, ROW2COL*/
|
2018-02-04 22:50:49 +01:00
|
|
|
#define DIODE_DIRECTION ROW2COL
|
|
|
|
|
2018-11-09 20:16:08 +01:00
|
|
|
#define BACKLIGHT_PIN C6
|
|
|
|
#define BACKLIGHT_BREATHING
|
|
|
|
#define BACKLIGHT_LEVELS 5
|
2018-02-04 22:50:49 +01:00
|
|
|
|
2019-08-23 23:23:53 +02:00
|
|
|
#ifndef SELECT_SOFT_SERIAL_SPEED
|
|
|
|
#define SELECT_SOFT_SERIAL_SPEED 3
|
|
|
|
#endif
|
|
|
|
|
2018-02-04 22:50:49 +01:00
|
|
|
/* 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
|
|
|
|
|
|
|
|
/* If defined, GRAVE_ESC will always act as ESC when CTRL is held.
|
2023-02-06 03:40:23 +01:00
|
|
|
* This is useful for the Windows task manager shortcut (ctrl+shift+esc).
|
2018-02-04 22:50:49 +01:00
|
|
|
*/
|
2018-11-09 20:16:08 +01:00
|
|
|
#define GRAVE_ESC_CTRL_OVERRIDE
|
2018-02-04 22:50:49 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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
|