forked from mirrors/qmk_userspace
110 lines
3 KiB
C
110 lines
3 KiB
C
/* Copyright 2024 @ Keychron (https://www.keychron.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
|
|
|
|
/* Encoder Configuration */
|
|
#define ENCODER_DEFAULT_POS 0x3
|
|
#define ENCODER_MAP_KEY_DELAY 2
|
|
|
|
/* I2C Driver Configuration */
|
|
#define I2C1_SCL_PIN B8
|
|
#define I2C1_SDA_PIN B9
|
|
#define I2C1_CLOCK_SPEED 400000
|
|
#define I2C1_DUTY_CYCLE FAST_DUTY_CYCLE_2
|
|
|
|
/* EEPROM Driver Configuration */
|
|
#define EXTERNAL_EEPROM_BYTE_COUNT 2048
|
|
#define EXTERNAL_EEPROM_PAGE_SIZE 32
|
|
#define EXTERNAL_EEPROM_WRITE_TIME 3
|
|
|
|
/* User used eeprom */
|
|
#define I2C1_OPMODE OPMODE_I2C
|
|
#define EXTERNAL_EEPROM_I2C_BASE_ADDRESS 0b10100010
|
|
#define KEYCODE_BUFFER_ENABLE
|
|
|
|
#define LED_DRIVER_SHUTDOWN_PIN B14
|
|
|
|
/* Hold Fn+Win to lock Win key */
|
|
#define WIN_LOCK_HOLD_TIME 3000
|
|
|
|
/* Firmware Version for Via */
|
|
#define VIA_FIRMWARE_VERSION 0x00000001
|
|
|
|
#ifdef LK_WIRELESS_ENABLE
|
|
/* Hardware configuration */
|
|
# define WT_DRIVER SPIDQ
|
|
|
|
# define P2P4_MODE_SELECT_PIN C11
|
|
# define BT_MODE_SELECT_PIN C13
|
|
|
|
# define LKBT51_RESET_PIN C4
|
|
# define LKBT51_INT_INPUT_PIN B1
|
|
# define BLUETOOTH_INT_OUTPUT_PIN A4
|
|
|
|
# define USB_POWER_SENSE_PIN B0
|
|
# define USB_POWER_CONNECTED_LEVEL 0
|
|
|
|
# define BAT_CHARGING_PIN C10
|
|
# define BAT_CHARGING_LEVEL 0
|
|
|
|
# define BAT_LOW_LED_PIN C5
|
|
# define BAT_LOW_LED_PIN_ON_STATE 1
|
|
|
|
# define DP_PULLUP_CONTROL_PIN C6
|
|
|
|
# define BT_HOST_DEVICES_COUNT 3
|
|
|
|
# if defined(RGB_MATRIX_ENABLE) || defined(LED_MATRIX_ENABLE)
|
|
|
|
# define BT_INDICATION_LED_LIST \
|
|
{ 15, 16, 17 }
|
|
|
|
# define P24G_INDICATION_LED_INDEX 18
|
|
|
|
# define BAT_LEVEL_LED_LIST \
|
|
{ 15, 16, 17, 18, 19, 20, 21, 22, 23, 24 }
|
|
|
|
/* Backlit disable timeout when keyboard is disconnected(unit: second) */
|
|
# define DISCONNECTED_BACKLIGHT_DISABLE_TIMEOUT 40
|
|
|
|
/* Backlit disable timeout when keyboard is connected(unit: second) */
|
|
# define CONNECTED_BACKLIGHT_DISABLE_TIMEOUT 600
|
|
|
|
/* Reinit LED driver on tranport changed */
|
|
# define REINIT_LED_DRIVER 1
|
|
|
|
# endif
|
|
|
|
/* Keep USB connection in blueooth mode */
|
|
# define KEEP_USB_CONNECTION_IN_WIRELESS_MODE
|
|
|
|
/* Enable bluetooth NKRO */
|
|
# define WIRELESS_NKRO_ENABLE
|
|
|
|
/* Raw hid command for factory test and bluetooth DFU */
|
|
# define RAW_HID_CMD 0xAA ... 0xAB
|
|
#else
|
|
/* Raw hid command for factory test */
|
|
# define RAW_HID_CMD 0xAB
|
|
#endif
|
|
|
|
/* Factory test keys */
|
|
#define FN_KEY_1 MO(1)
|
|
#define FN_KEY_2 MO(3)
|
|
#define FN_BL_TRIG_KEY KC_END
|
|
|
|
#define MATRIX_IO_DELAY 10
|