2019-05-06 06:08:12 +02:00
|
|
|
/*
|
|
|
|
Copyright 2015 Jun Wako <wakojun@gmail.com>
|
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-04-07 06:01:11 +02:00
|
|
|
#define BACKLIGHT_PWM_DRIVER PWMD3
|
|
|
|
#define BACKLIGHT_PWM_CHANNEL 1
|
|
|
|
#define BACKLIGHT_PAL_MODE 1
|
2019-05-06 06:08:12 +02: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
|
|
|
|
|
2023-09-25 05:06:42 +02:00
|
|
|
#define WS2812_SPI_DRIVER SPID2
|
2020-04-07 06:01:11 +02:00
|
|
|
#define WS2812_SPI_MOSI_PAL_MODE 0
|
2021-06-03 01:48:16 +02:00
|
|
|
#define WS2812_SPI_SCK_PAL_MODE 0
|
|
|
|
#define WS2812_SPI_SCK_PIN B13
|
2019-05-06 06:08:12 +02:00
|
|
|
|
2020-04-16 00:37:47 +02:00
|
|
|
#define INDICATOR_PIN_0 A9
|
|
|
|
#define INDICATOR_PIN_1 A8
|
|
|
|
#define INDICATOR_PIN_2 B12
|
|
|
|
|
2020-01-20 19:18:25 +01:00
|
|
|
|
2020-03-19 02:10:28 +01:00
|
|
|
// 2 bits for 4 layout options
|
|
|
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
|
|
|
2019-05-06 06:08:12 +02: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
|