2018-05-10 06:36:40 +02:00
|
|
|
/*
|
2019-07-08 23:07:36 +02:00
|
|
|
Copyright %YEAR% %YOUR_NAME%
|
2018-05-10 06:36:40 +02:00
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
2018-07-16 17:44:16 +02:00
|
|
|
#pragma once
|
2018-05-10 06:36:40 +02:00
|
|
|
|
2018-07-19 02:16:57 +02:00
|
|
|
#include "config_common.h"
|
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
#define VENDOR_ID 0x20A0
|
|
|
|
#define PRODUCT_ID 0x422D
|
|
|
|
#define DEVICE_VER 0x0001
|
|
|
|
#define MANUFACTURER You
|
2019-10-10 12:48:37 +02:00
|
|
|
#define PRODUCT %KEYBOARD%
|
2019-08-30 20:19:03 +02:00
|
|
|
#define DESCRIPTION A custom keyboard
|
2018-05-10 06:36:40 +02:00
|
|
|
|
|
|
|
#define RGBLED_NUM 16
|
|
|
|
|
2019-04-05 18:20:43 +02:00
|
|
|
#define MATRIX_ROWS 8
|
|
|
|
#define MATRIX_COLS 11
|
2018-05-10 06:36:40 +02:00
|
|
|
|
2019-10-10 12:48:37 +02:00
|
|
|
#define MATRIX_ROW_PINS { B0, B1, B2, B3, B4, B5, B6, B7 }
|
|
|
|
#define MATRIX_COL_PINS { A0, A1, A2, A3, A4, A5, A6, A7, C7, C6, C5 }
|
2019-04-05 18:20:43 +02:00
|
|
|
// #define MATRIX_COL_PINS { A0, A1, A2, A3, A4, A5, A6, A7, C7, C6, C5, C4, C3, C2, C1, C0, D7 }
|
2019-10-10 12:48:37 +02:00
|
|
|
#define UNUSED_PINS {}
|
2018-05-10 06:36:40 +02:00
|
|
|
|
|
|
|
#define DIODE_DIRECTION COL2ROW
|
2019-05-24 02:42:06 +02:00
|
|
|
#define DEBOUNCE 5
|
2018-05-10 06:36:40 +02:00
|
|
|
|
|
|
|
#define BACKLIGHT_LEVELS 1
|
|
|
|
#define RGBLIGHT_ANIMATIONS
|
|
|
|
|
|
|
|
#define NO_UART 1
|
|
|
|
|
2019-11-12 03:27:20 +01:00
|
|
|
/* disable these deprecated features by default */
|
|
|
|
#ifndef LINK_TIME_OPTIMIZATION_ENABLE
|
|
|
|
#define NO_ACTION_MACRO
|
|
|
|
#define NO_ACTION_FUNCTION
|
|
|
|
#endif
|
|
|
|
|
2019-01-27 00:49:45 +01:00
|
|
|
/* key combination for magic key command */
|
|
|
|
/* defined by default; to change, uncomment and set to the combination you want */
|
2019-07-20 22:21:40 +02:00
|
|
|
// #define IS_COMMAND() (get_mods() == MOD_MASK_SHIFT)
|
2018-10-27 20:53:50 +02:00
|
|
|
|
|
|
|
/* Bootmagic Lite key configuration */
|
|
|
|
// #define BOOTMAGIC_LITE_ROW 0
|
|
|
|
// #define BOOTMAGIC_LITE_COLUMN 0
|