Move VIA config to keymap level (#23754)
This commit is contained in:
parent
73f9fb91a3
commit
3400908b08
70 changed files with 582 additions and 113 deletions
|
@ -46,7 +46,7 @@ led_config_t g_led_config = { {
|
||||||
} };
|
} };
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !defined(VIA_ENABLE) && defined(ENCODER_ENABLE)
|
#if defined(ENCODER_ENABLE) && !defined(ENCODER_MAP_ENABLE)
|
||||||
bool encoder_update_kb(uint8_t index, bool clockwise) {
|
bool encoder_update_kb(uint8_t index, bool clockwise) {
|
||||||
if (!encoder_update_user(index, clockwise)) {
|
if (!encoder_update_user(index, clockwise)) {
|
||||||
return false;
|
return false;
|
||||||
|
@ -79,4 +79,4 @@ bool encoder_update_kb(uint8_t index, bool clockwise) {
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -75,30 +75,27 @@
|
||||||
// RAINDROPS don't match well with layer LED indicator (oc) using rgb_matrix_set_color().
|
// RAINDROPS don't match well with layer LED indicator (oc) using rgb_matrix_set_color().
|
||||||
// #define ENABLE_RGB_MATRIX_RAINDROPS
|
// #define ENABLE_RGB_MATRIX_RAINDROPS
|
||||||
// #define ENABLE_RGB_MATRIX_JELLYBEAN_RAINDROPS
|
// #define ENABLE_RGB_MATRIX_JELLYBEAN_RAINDROPS
|
||||||
// Recommended not to use these.
|
# define ENABLE_RGB_MATRIX_GRADIENT_LEFT_RIGHT
|
||||||
# ifndef VIA_ENABLE
|
# define ENABLE_RGB_MATRIX_BAND_VAL
|
||||||
# define ENABLE_RGB_MATRIX_GRADIENT_LEFT_RIGHT
|
# define ENABLE_RGB_MATRIX_BAND_PINWHEEL_VAL
|
||||||
# define ENABLE_RGB_MATRIX_BAND_VAL
|
# define ENABLE_RGB_MATRIX_BAND_SPIRAL_VAL
|
||||||
# define ENABLE_RGB_MATRIX_BAND_PINWHEEL_VAL
|
# define ENABLE_RGB_MATRIX_CYCLE_ALL
|
||||||
# define ENABLE_RGB_MATRIX_BAND_SPIRAL_VAL
|
# define ENABLE_RGB_MATRIX_CYCLE_UP_DOWN
|
||||||
# define ENABLE_RGB_MATRIX_CYCLE_ALL
|
# define ENABLE_RGB_MATRIX_RAINBOW_MOVING_CHEVRON
|
||||||
# define ENABLE_RGB_MATRIX_CYCLE_UP_DOWN
|
# define ENABLE_RGB_MATRIX_CYCLE_OUT_IN
|
||||||
# define ENABLE_RGB_MATRIX_RAINBOW_MOVING_CHEVRON
|
# define ENABLE_RGB_MATRIX_CYCLE_OUT_IN_DUAL
|
||||||
# define ENABLE_RGB_MATRIX_CYCLE_OUT_IN
|
# define ENABLE_RGB_MATRIX_CYCLE_PINWHEEL
|
||||||
# define ENABLE_RGB_MATRIX_CYCLE_OUT_IN_DUAL
|
# define ENABLE_RGB_MATRIX_CYCLE_SPIRAL
|
||||||
# define ENABLE_RGB_MATRIX_CYCLE_PINWHEEL
|
# define ENABLE_RGB_MATRIX_DUAL_BEACON
|
||||||
# define ENABLE_RGB_MATRIX_CYCLE_SPIRAL
|
# define ENABLE_RGB_MATRIX_RAINBOW_BEACON
|
||||||
# define ENABLE_RGB_MATRIX_DUAL_BEACON
|
# define ENABLE_RGB_MATRIX_HUE_BREATHING
|
||||||
# define ENABLE_RGB_MATRIX_RAINBOW_BEACON
|
# define ENABLE_RGB_MATRIX_HUE_PENDULUM
|
||||||
# define ENABLE_RGB_MATRIX_HUE_BREATHING
|
# define ENABLE_RGB_MATRIX_HUE_WAVE
|
||||||
# define ENABLE_RGB_MATRIX_HUE_PENDULUM
|
# define ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTIWIDE
|
||||||
# define ENABLE_RGB_MATRIX_HUE_WAVE
|
# define ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTINEXUS
|
||||||
# define ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTIWIDE
|
# define ENABLE_RGB_MATRIX_MULTISPLASH
|
||||||
# define ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTINEXUS
|
# define ENABLE_RGB_MATRIX_SOLID_MULTISPLASH
|
||||||
# define ENABLE_RGB_MATRIX_MULTISPLASH
|
# define ENABLE_RGB_MATRIX_SOLID_REACTIVE_CROSS
|
||||||
# define ENABLE_RGB_MATRIX_SOLID_MULTISPLASH
|
|
||||||
# define ENABLE_RGB_MATRIX_SOLID_REACTIVE_CROSS
|
|
||||||
# endif
|
|
||||||
# endif // CONSOLE_ENABLE
|
# endif // CONSOLE_ENABLE
|
||||||
#endif // RGB_MATRIX_ENABLE
|
#endif // RGB_MATRIX_ENABLE
|
||||||
|
|
||||||
|
|
|
@ -13,6 +13,26 @@
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define DYNAMIC_KEYMAP_LAYER_COUNT 4
|
#undef ENABLE_RGB_MATRIX_GRADIENT_LEFT_RIGHT
|
||||||
|
#undef ENABLE_RGB_MATRIX_BAND_VAL
|
||||||
|
#undef ENABLE_RGB_MATRIX_BAND_PINWHEEL_VAL
|
||||||
|
#undef ENABLE_RGB_MATRIX_BAND_SPIRAL_VAL
|
||||||
|
#undef ENABLE_RGB_MATRIX_CYCLE_ALL
|
||||||
|
#undef ENABLE_RGB_MATRIX_CYCLE_UP_DOWN
|
||||||
|
#undef ENABLE_RGB_MATRIX_RAINBOW_MOVING_CHEVRON
|
||||||
|
#undef ENABLE_RGB_MATRIX_CYCLE_OUT_IN
|
||||||
|
#undef ENABLE_RGB_MATRIX_CYCLE_OUT_IN_DUAL
|
||||||
|
#undef ENABLE_RGB_MATRIX_CYCLE_PINWHEEL
|
||||||
|
#undef ENABLE_RGB_MATRIX_CYCLE_SPIRAL
|
||||||
|
#undef ENABLE_RGB_MATRIX_DUAL_BEACON
|
||||||
|
#undef ENABLE_RGB_MATRIX_RAINBOW_BEACON
|
||||||
|
#undef ENABLE_RGB_MATRIX_HUE_BREATHING
|
||||||
|
#undef ENABLE_RGB_MATRIX_HUE_PENDULUM
|
||||||
|
#undef ENABLE_RGB_MATRIX_HUE_WAVE
|
||||||
|
#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTIWIDE
|
||||||
|
#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTINEXUS
|
||||||
|
#undef ENABLE_RGB_MATRIX_MULTISPLASH
|
||||||
|
#undef ENABLE_RGB_MATRIX_SOLID_MULTISPLASH
|
||||||
|
#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE_CROSS
|
||||||
|
|
|
@ -20,6 +20,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
/* key combination for magic key command */
|
/* key combination for magic key command */
|
||||||
#define KEYBOARD_LOCK_ENABLE
|
#define KEYBOARD_LOCK_ENABLE
|
||||||
#define MAGIC_KEY_LOCK L
|
#define MAGIC_KEY_LOCK L
|
||||||
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 3
|
|
||||||
#define VIA_EEPROM_CUSTOM_CONFIG_SIZE 1
|
|
||||||
|
|
21
keyboards/bioi/g60/keymaps/via/config.h
Normal file
21
keyboards/bioi/g60/keymaps/via/config.h
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
/*
|
||||||
|
Copyright 2019 Basic I/O Instruments(Scott Wei) <scot.wei@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
|
||||||
|
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 3
|
||||||
|
#define VIA_EEPROM_CUSTOM_CONFIG_SIZE 1
|
|
@ -20,5 +20,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
/* key combination for magic key command */
|
/* key combination for magic key command */
|
||||||
#define KEYBOARD_LOCK_ENABLE
|
#define KEYBOARD_LOCK_ENABLE
|
||||||
#define MAGIC_KEY_LOCK L
|
#define MAGIC_KEY_LOCK L
|
||||||
|
|
||||||
#define VIA_EEPROM_CUSTOM_CONFIG_SIZE 1
|
|
||||||
|
|
20
keyboards/bioi/morgan65/keymaps/via/config.h
Normal file
20
keyboards/bioi/morgan65/keymaps/via/config.h
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
/*
|
||||||
|
Copyright 2019 Basic I/O Instruments(Scott Wei) <scot.wei@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
|
||||||
|
|
||||||
|
#define VIA_EEPROM_CUSTOM_CONFIG_SIZE 1
|
|
@ -1,5 +1,3 @@
|
||||||
#pragma once
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2022 Andrew Kannan
|
Copyright 2022 Andrew Kannan
|
||||||
|
|
||||||
|
@ -28,9 +26,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#define WS2812_SPI_SCK_PAL_MODE 0
|
#define WS2812_SPI_SCK_PAL_MODE 0
|
||||||
#define WS2812_SPI_SCK_PIN B13
|
#define WS2812_SPI_SCK_PIN B13
|
||||||
|
|
||||||
// 2 bits for 4 layout options
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
||||||
|
|
||||||
#define SLEEP_LED_GPT_DRIVER GPTD1
|
#define SLEEP_LED_GPT_DRIVER GPTD1
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -48,6 +43,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
//#define NO_ACTION_LAYER
|
//#define NO_ACTION_LAYER
|
||||||
//#define NO_ACTION_TAPPING
|
//#define NO_ACTION_TAPPING
|
||||||
//#define NO_ACTION_ONESHOT
|
//#define NO_ACTION_ONESHOT
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
21
keyboards/cannonkeys/malicious_ergo/keymaps/via/config.h
Normal file
21
keyboards/cannonkeys/malicious_ergo/keymaps/via/config.h
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
/*
|
||||||
|
Copyright 2022 Andrew Kannan
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
|
// 2 bits for 4 layout options
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
@ -17,7 +17,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
# define RGBLIGHT_DEFAULT_MODE RGBLIGHT_MODE_RAINBOW_SWIRL + 5
|
#define RGBLIGHT_DEFAULT_MODE RGBLIGHT_MODE_RAINBOW_SWIRL + 5
|
||||||
|
|
||||||
/* VIA related config */
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
||||||
|
|
21
keyboards/chlx/str_merro60/keymaps/via/config.h
Normal file
21
keyboards/chlx/str_merro60/keymaps/via/config.h
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
/*
|
||||||
|
Copyright 2022 Alexander Lee <chlx.bsmt@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
|
||||||
|
|
||||||
|
/* VIA related config */
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
@ -17,5 +17,3 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define RGBLIGHT_DEFAULT_MODE (RGBLIGHT_EFFECT_RAINBOW_MOOD + 6)
|
#define RGBLIGHT_DEFAULT_MODE (RGBLIGHT_EFFECT_RAINBOW_MOOD + 6)
|
||||||
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
||||||
|
|
19
keyboards/dztech/duo_s/keymaps/via/config.h
Normal file
19
keyboards/dztech/duo_s/keymaps/via/config.h
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
/* Copyright 2021 DZTECH <moyi4681@live.cn>
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
@ -19,5 +19,3 @@
|
||||||
#define IS31FL3733_I2C_ADDRESS_1 IS31FL3733_I2C_ADDRESS_GND_GND
|
#define IS31FL3733_I2C_ADDRESS_1 IS31FL3733_I2C_ADDRESS_GND_GND
|
||||||
|
|
||||||
#define USB_SUSPEND_WAKEUP_DELAY 5000
|
#define USB_SUSPEND_WAKEUP_DELAY 5000
|
||||||
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
||||||
|
|
19
keyboards/dztech/dz64rgb/keymaps/via/config.h
Normal file
19
keyboards/dztech/dz64rgb/keymaps/via/config.h
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
/* Copyright 2021 DZTECH <moyi4681@Live.cn>
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
@ -10,5 +10,3 @@
|
||||||
/* BACKLIGHT PWM */
|
/* BACKLIGHT PWM */
|
||||||
#define BACKLIGHT_PWM_DRIVER PWMD1
|
#define BACKLIGHT_PWM_DRIVER PWMD1
|
||||||
#define BACKLIGHT_PWM_CHANNEL RP2040_PWM_CHANNEL_B
|
#define BACKLIGHT_PWM_CHANNEL RP2040_PWM_CHANNEL_B
|
||||||
|
|
||||||
#define VIA_EEPROM_CUSTOM_CONFIG_SIZE 4
|
|
6
keyboards/era/linx3/n8x/keymaps/via/config.h
Normal file
6
keyboards/era/linx3/n8x/keymaps/via/config.h
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
// Copyright 2024 Hyojin Bak (@eerraa)
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#define VIA_EEPROM_CUSTOM_CONFIG_SIZE 4
|
|
@ -20,5 +20,3 @@
|
||||||
|
|
||||||
/* Locking resynchronize hack */
|
/* Locking resynchronize hack */
|
||||||
#define LOCKING_RESYNC_ENABLE
|
#define LOCKING_RESYNC_ENABLE
|
||||||
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
||||||
|
|
18
keyboards/ilumkb/primus75/keymaps/via/config.h
Normal file
18
keyboards/ilumkb/primus75/keymaps/via/config.h
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
/* Copyright 2021 dztech
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
@ -19,6 +19,3 @@
|
||||||
#define LOCKING_SUPPORT_ENABLE
|
#define LOCKING_SUPPORT_ENABLE
|
||||||
/* Locking resynchronize hack */
|
/* Locking resynchronize hack */
|
||||||
#define LOCKING_RESYNC_ENABLE
|
#define LOCKING_RESYNC_ENABLE
|
||||||
|
|
||||||
/* VIA related config */
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 4
|
|
||||||
|
|
19
keyboards/ilumkb/volcano660/keymaps/via/config.h
Normal file
19
keyboards/ilumkb/volcano660/keymaps/via/config.h
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
/* Copyright 2020 dztech
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
/* VIA related config */
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 4
|
|
@ -17,5 +17,3 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define USB_SUSPEND_WAKEUP_DELAY 5000
|
#define USB_SUSPEND_WAKEUP_DELAY 5000
|
||||||
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
||||||
|
|
19
keyboards/kbdfans/baguette66/rgb/keymaps/via/config.h
Normal file
19
keyboards/kbdfans/baguette66/rgb/keymaps/via/config.h
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
/* Copyright 2022 DZTECH <moyi4681@Live.cn>
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
@ -17,4 +17,3 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define USB_SUSPEND_WAKEUP_DELAY 5000
|
#define USB_SUSPEND_WAKEUP_DELAY 5000
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
||||||
|
|
19
keyboards/kbdfans/baguette66/soldered/keymaps/via/config.h
Normal file
19
keyboards/kbdfans/baguette66/soldered/keymaps/via/config.h
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
/* Copyright 2022 DZTECH <moyi4681@Live.cn>
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
@ -19,5 +19,3 @@
|
||||||
#define USB_SUSPEND_WAKEUP_DELAY 5000
|
#define USB_SUSPEND_WAKEUP_DELAY 5000
|
||||||
|
|
||||||
#define IS31FL3741_I2C_ADDRESS_1 IS31FL3741_I2C_ADDRESS_GND
|
#define IS31FL3741_I2C_ADDRESS_1 IS31FL3741_I2C_ADDRESS_GND
|
||||||
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
||||||
|
|
19
keyboards/kbdfans/boop65/rgb/keymaps/via/config.h
Normal file
19
keyboards/kbdfans/boop65/rgb/keymaps/via/config.h
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
/* Copyright 2021 Dztech <moyi4681@Live.cn>
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
@ -17,5 +17,3 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define RGBLIGHT_DEFAULT_MODE (RGBLIGHT_EFFECT_RAINBOW_MOOD +8 )
|
#define RGBLIGHT_DEFAULT_MODE (RGBLIGHT_EFFECT_RAINBOW_MOOD +8 )
|
||||||
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
19
keyboards/kbdfans/bounce/75/hotswap/keymaps/via/config.h
Normal file
19
keyboards/kbdfans/bounce/75/hotswap/keymaps/via/config.h
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
/* Copyright 2022 DZTECH <moyi4681@Live.cn>
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
@ -17,5 +17,3 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define RGBLIGHT_DEFAULT_MODE (RGBLIGHT_EFFECT_RAINBOW_MOOD +8 )
|
#define RGBLIGHT_DEFAULT_MODE (RGBLIGHT_EFFECT_RAINBOW_MOOD +8 )
|
||||||
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
19
keyboards/kbdfans/bounce/75/soldered/keymaps/via/config.h
Normal file
19
keyboards/kbdfans/bounce/75/soldered/keymaps/via/config.h
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
/* Copyright 2022 DZTECH <moyi4681@Live.cn>
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
19
keyboards/kbdfans/kbd67/mkiirgb/keymaps/via/config.h
Normal file
19
keyboards/kbdfans/kbd67/mkiirgb/keymaps/via/config.h
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
/* Copyright 2021 DZTECH <moyi4681@live.cn>
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
@ -17,5 +17,3 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define USB_SUSPEND_WAKEUP_DELAY 5000
|
#define USB_SUSPEND_WAKEUP_DELAY 5000
|
||||||
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
||||||
|
|
|
@ -17,4 +17,3 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define USB_SUSPEND_WAKEUP_DELAY 5000
|
#define USB_SUSPEND_WAKEUP_DELAY 5000
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
||||||
|
|
19
keyboards/kbdfans/kbd67/mkiirgb_iso/keymaps/via/config.h
Normal file
19
keyboards/kbdfans/kbd67/mkiirgb_iso/keymaps/via/config.h
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
/* Copyright 2021 DZTECH <moyi4681@live.cn>
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
@ -17,5 +17,3 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define RGBLIGHT_DEFAULT_MODE (RGBLIGHT_EFFECT_RAINBOW_MOOD + 6)
|
#define RGBLIGHT_DEFAULT_MODE (RGBLIGHT_EFFECT_RAINBOW_MOOD + 6)
|
||||||
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
||||||
|
|
19
keyboards/kbdfans/kbd75hs/keymaps/via/config.h
Normal file
19
keyboards/kbdfans/kbd75hs/keymaps/via/config.h
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
/* Copyright 2021 DZTECH <moyi4681@Live.cn>
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
@ -17,4 +17,3 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define USB_SUSPEND_WAKEUP_DELAY 5000
|
#define USB_SUSPEND_WAKEUP_DELAY 5000
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
||||||
|
|
19
keyboards/kbdfans/kbd75rgb/keymaps/via/config.h
Normal file
19
keyboards/kbdfans/kbd75rgb/keymaps/via/config.h
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
/* Copyright 2021 DZTECH <moyi4681@Live.cn>
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
@ -17,5 +17,3 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define RGBLIGHT_DEFAULT_MODE (RGBLIGHT_EFFECT_RAINBOW_MOOD + 8)
|
#define RGBLIGHT_DEFAULT_MODE (RGBLIGHT_EFFECT_RAINBOW_MOOD + 8)
|
||||||
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
||||||
|
|
|
@ -14,4 +14,7 @@
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
#define DYNAMIC_KEYMAP_LAYER_COUNT 2
|
|
||||||
|
#define DYNAMIC_KEYMAP_LAYER_COUNT 2
|
||||||
|
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
||||||
|
|
|
@ -22,5 +22,3 @@
|
||||||
#define LOCKING_RESYNC_ENABLE
|
#define LOCKING_RESYNC_ENABLE
|
||||||
|
|
||||||
#define RGBLIGHT_DEFAULT_MODE (RGBLIGHT_EFFECT_RAINBOW_MOOD + 6)
|
#define RGBLIGHT_DEFAULT_MODE (RGBLIGHT_EFFECT_RAINBOW_MOOD + 6)
|
||||||
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
19
keyboards/kbdfans/phaseone/keymaps/via/config.h
Normal file
19
keyboards/kbdfans/phaseone/keymaps/via/config.h
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
/* Copyright 2022 Dztech
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
@ -17,5 +17,3 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define RGBLIGHT_DEFAULT_MODE (RGBLIGHT_EFFECT_RAINBOW_MOOD + 6)
|
#define RGBLIGHT_DEFAULT_MODE (RGBLIGHT_EFFECT_RAINBOW_MOOD + 6)
|
||||||
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
||||||
|
|
19
keyboards/kbdfans/tiger80/keymaps/via/config.h
Normal file
19
keyboards/kbdfans/tiger80/keymaps/via/config.h
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
/* Copyright 2022 DZTECH <moyi4681@Live.cn>
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
35
keyboards/keebio/quefrency/keymaps/via/config.h
Normal file
35
keyboards/keebio/quefrency/keymaps/via/config.h
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
/*
|
||||||
|
Copyright 2012 Jun Wako <wakojun@gmail.com>
|
||||||
|
Copyright 2015 Jack Humbert
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
|
#if defined(KEYBOARD_keebio_quefrency_rev1)
|
||||||
|
// Set 65% column (option 1) and Macro (option 2) on by default
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_DEFAULT 0x60
|
||||||
|
|
||||||
|
#elif defined(KEYBOARD_keebio_quefrency_rev2)
|
||||||
|
// Set 65% column (option 3) and Macro (option 4) on by default
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_DEFAULT 0x00DE
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
||||||
|
|
||||||
|
#elif defined(KEYBOARD_keebio_quefrency_rev3)
|
||||||
|
// Set 65% column (option 3) and Macro (option 4) on by default
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_DEFAULT 0x00DE
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
||||||
|
|
||||||
|
#endif
|
|
@ -24,6 +24,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#define LOCKING_SUPPORT_ENABLE
|
#define LOCKING_SUPPORT_ENABLE
|
||||||
/* Locking resynchronize hack */
|
/* Locking resynchronize hack */
|
||||||
#define LOCKING_RESYNC_ENABLE
|
#define LOCKING_RESYNC_ENABLE
|
||||||
|
|
||||||
// Set 65% column (option 1) and Macro (option 2) on by default
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_DEFAULT 0x60
|
|
||||||
|
|
|
@ -21,7 +21,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#define SPLIT_HAND_PIN F7
|
#define SPLIT_HAND_PIN F7
|
||||||
|
|
||||||
#define CAPS_LOCK_LED_PIN B6
|
#define CAPS_LOCK_LED_PIN B6
|
||||||
|
|
||||||
// Set 65% column (option 3) and Macro (option 4) on by default
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_DEFAULT 0x00DE
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
||||||
|
|
|
@ -21,7 +21,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#define SPLIT_HAND_PIN F7
|
#define SPLIT_HAND_PIN F7
|
||||||
|
|
||||||
#define CAPS_LOCK_LED_PIN B6
|
#define CAPS_LOCK_LED_PIN B6
|
||||||
|
|
||||||
// Set 65% column (option 3) and Macro (option 4) on by default
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_DEFAULT 0x00DE
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
||||||
|
|
23
keyboards/keebio/sinc/keymaps/via/config.h
Normal file
23
keyboards/keebio/sinc/keymaps/via/config.h
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
/* Copyright 2021 Danny Nguyen <danny@keeb.io>
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
|
#if defined(KEYBOARD_keebio_sinc_rev1) || defined(KEYBOARD_keebio_sinc_rev2)
|
||||||
|
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
||||||
|
|
||||||
|
#endif
|
|
@ -25,5 +25,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#define LOCKING_RESYNC_ENABLE
|
#define LOCKING_RESYNC_ENABLE
|
||||||
|
|
||||||
#define RGBLIGHT_DEFAULT_MODE (RGBLIGHT_MODE_RAINBOW_SWIRL + 2)
|
#define RGBLIGHT_DEFAULT_MODE (RGBLIGHT_MODE_RAINBOW_SWIRL + 2)
|
||||||
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
||||||
|
|
|
@ -25,5 +25,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#define LOCKING_RESYNC_ENABLE
|
#define LOCKING_RESYNC_ENABLE
|
||||||
|
|
||||||
#define RGBLIGHT_DEFAULT_MODE (RGBLIGHT_MODE_RAINBOW_SWIRL + 2)
|
#define RGBLIGHT_DEFAULT_MODE (RGBLIGHT_MODE_RAINBOW_SWIRL + 2)
|
||||||
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
||||||
|
|
|
@ -30,9 +30,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#define WS2812_SPI_SCK_PAL_MODE 0
|
#define WS2812_SPI_SCK_PAL_MODE 0
|
||||||
#define WS2812_SPI_SCK_PIN B13
|
#define WS2812_SPI_SCK_PIN B13
|
||||||
|
|
||||||
// 2 bits for 4 layout options
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Feature disable options
|
* Feature disable options
|
||||||
* These options are also useful to firmware size reduction.
|
* These options are also useful to firmware size reduction.
|
||||||
|
|
20
keyboards/keebsforall/coarse60/keymaps/via/config.h
Normal file
20
keyboards/keebsforall/coarse60/keymaps/via/config.h
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
/*
|
||||||
|
Copyright 2021 Elliot Powell
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
|
// 2 bits for 4 layout options
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
@ -20,7 +20,3 @@
|
||||||
#define LOCKING_SUPPORT_ENABLE
|
#define LOCKING_SUPPORT_ENABLE
|
||||||
/* Locking resynchronize hack */
|
/* Locking resynchronize hack */
|
||||||
#define LOCKING_RESYNC_ENABLE
|
#define LOCKING_RESYNC_ENABLE
|
||||||
|
|
||||||
/* VIA related config */
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
||||||
|
|
||||||
|
|
21
keyboards/melgeek/mj6xy/keymaps/via/config.h
Executable file
21
keyboards/melgeek/mj6xy/keymaps/via/config.h
Executable file
|
@ -0,0 +1,21 @@
|
||||||
|
/* Copyright 2020 MelGeek <melgeek001365@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
|
||||||
|
|
||||||
|
/* VIA related config */
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
||||||
|
|
|
@ -23,6 +23,3 @@
|
||||||
#define LOCKING_SUPPORT_ENABLE
|
#define LOCKING_SUPPORT_ENABLE
|
||||||
/* Locking resynchronize hack */
|
/* Locking resynchronize hack */
|
||||||
#define LOCKING_RESYNC_ENABLE
|
#define LOCKING_RESYNC_ENABLE
|
||||||
|
|
||||||
/* VIA related config */
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
||||||
|
|
19
keyboards/mt/mt64rgb/keymaps/via/config.h
Normal file
19
keyboards/mt/mt64rgb/keymaps/via/config.h
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
/* Copyright 2020 MT
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
/* VIA related config */
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
@ -24,6 +24,3 @@
|
||||||
#define LOCKING_SUPPORT_ENABLE
|
#define LOCKING_SUPPORT_ENABLE
|
||||||
/* Locking resynchronize hack */
|
/* Locking resynchronize hack */
|
||||||
#define LOCKING_RESYNC_ENABLE
|
#define LOCKING_RESYNC_ENABLE
|
||||||
|
|
||||||
/* VIA related config */
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
||||||
|
|
20
keyboards/playkbtw/pk64rgb/keymaps/via/config.h
Normal file
20
keyboards/playkbtw/pk64rgb/keymaps/via/config.h
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
/* Copyright 2021 Play Keyboard
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
/* VIA related config */
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
21
keyboards/projectkb/alice/keymaps/via/config.h
Normal file
21
keyboards/projectkb/alice/keymaps/via/config.h
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
/*
|
||||||
|
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
|
||||||
|
|
||||||
|
// 2 bits for 4 layout options
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
@ -35,9 +35,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#define INDICATOR_PIN_1 A1
|
#define INDICATOR_PIN_1 A1
|
||||||
#define INDICATOR_PIN_2 A2
|
#define INDICATOR_PIN_2 A2
|
||||||
|
|
||||||
// 2 bits for 4 layout options
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Feature disable options
|
* Feature disable options
|
||||||
* These options are also useful to firmware size reduction.
|
* These options are also useful to firmware size reduction.
|
||||||
|
|
|
@ -35,10 +35,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#define INDICATOR_PIN_1 A8
|
#define INDICATOR_PIN_1 A8
|
||||||
#define INDICATOR_PIN_2 B12
|
#define INDICATOR_PIN_2 B12
|
||||||
|
|
||||||
|
|
||||||
// 2 bits for 4 layout options
|
|
||||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Feature disable options
|
* Feature disable options
|
||||||
* These options are also useful to firmware size reduction.
|
* These options are also useful to firmware size reduction.
|
||||||
|
|
Loading…
Reference in a new issue