Merge remote-tracking branch 'qmk/master' into merge-2024-06-23

This commit is contained in:
Ilya Zhuravlev 2024-06-23 22:54:29 -06:00
commit e9d70b410a
15675 changed files with 653160 additions and 679575 deletions

View file

@ -19,15 +19,15 @@
void matrix_init_kb(void) {
matrix_init_user();
/* led pins */
setPinOutput(RED_LED);
setPinOutput(BLUE_LED);
setPinOutput(GREEN_LED);
gpio_set_pin_output(RED_LED);
gpio_set_pin_output(BLUE_LED);
gpio_set_pin_output(GREEN_LED);
}
void turn_off_leds(void) {
writePinLow(RED_LED);
writePinLow(BLUE_LED);
writePinLow(GREEN_LED);
gpio_write_pin_low(RED_LED);
gpio_write_pin_low(BLUE_LED);
gpio_write_pin_low(GREEN_LED);
}
void turn_on_led(pin_t pin) {
writePinHigh(pin);
gpio_write_pin_high(pin);
}

View file

@ -15,6 +15,15 @@
},
"processor": "atmega32u4",
"bootloader": "caterina",
"features": {
"bootmagic": false,
"command": true,
"console": true,
"encoder": true,
"extrakey": true,
"mousekey": true,
"nkro": false
},
"matrix_pins": {
"direct": [
["D1", "D4", "C6", "D7", "E6", "B2", "B3", "B1", "F7"]

View file

@ -1,13 +0,0 @@
# Build Options
# change yes to no to disable
#
BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
MOUSEKEY_ENABLE = yes # Mouse keys
EXTRAKEY_ENABLE = yes # Audio control and System control
CONSOLE_ENABLE = yes # Console for debug
COMMAND_ENABLE = yes # Commands for debug and configuration
NKRO_ENABLE = no # Enable N-Key Rollover
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
AUDIO_ENABLE = no # Audio output
ENCODER_ENABLE = yes