Update v1 and v4.

This commit is contained in:
lalalademaxiya1 2022-01-19 15:59:29 +08:00
parent d1076291c5
commit b20e2e456e
5 changed files with 7 additions and 7 deletions

View File

@ -18,7 +18,7 @@
/* USB Device descriptor parameter */
#define PRODUCT_ID 0x0311
#define DEVICE_VER 0x0103
#define DEVICE_VER 0x0100
/* RGB Matrix Configuration */
#define DRIVER_1_LED_TOTAL 45

View File

@ -1,2 +1,2 @@
VIA_ENABLE = yes
MOUSEKEY_ENABLE = no
MOUSEKEY_ENABLE = yes

View File

@ -8,11 +8,11 @@ A customizable 60% keyboard.
Make example for this keyboard (after setting up your build environment):
make keychron/v4/V4_ANSI_STM32L432:default
make keychron/v4/v4_ansi_stm32l432:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
make keychron/q4/V4_ANSI_STM32L432:default:flash
make keychron/q4/v4_ansi_stm32l432:default:flash
**Reset Key**: Hold down the key located at *K00*, commonly programmed as *Esc* while plugging in the keyboard.

View File

@ -206,5 +206,5 @@ void clear_eeprom(void) {
}
void restart_usb_driver(USBDriver *usbp) {
// Do nothing here.
}

View File

@ -18,6 +18,6 @@
#include "quantum.h"
#if defined(KEYBOARD_keychron_v4_V4_ANSI_STM32L432)
# include "V4_ANSI_STM32L432.h"
#if defined(KEYBOARD_keychron_v4_v4_ansi_stm32l432)
# include "v4_ansi_stm32l432.h"
#endif