mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-07-16 04:41:28 +00:00
fix Oled config
This commit is contained in:
parent
2d8b621854
commit
47db2ea409
@ -8,7 +8,7 @@
|
|||||||
# define OLED_DISPLAY_ADDRESS 0x3C
|
# define OLED_DISPLAY_ADDRESS 0x3C
|
||||||
|
|
||||||
/* I2C Conf */
|
/* I2C Conf */
|
||||||
# define I2C_DRIVER I2CD1
|
# define I2C_DRIVER I2CD0
|
||||||
# define I2C1_SDA_PIN GP0
|
# define I2C1_SDA_PIN GP0
|
||||||
# define I2C1_SCL_PIN GP1
|
# define I2C1_SCL_PIN GP1
|
||||||
#endif
|
#endif
|
||||||
|
@ -8,17 +8,6 @@
|
|||||||
"pid": "0x0010",
|
"pid": "0x0010",
|
||||||
"device_version": "2.1.0"
|
"device_version": "2.1.0"
|
||||||
},
|
},
|
||||||
"features": {
|
|
||||||
"audio": false,
|
|
||||||
"backlight": false,
|
|
||||||
"bootmagic": true,
|
|
||||||
"command": false,
|
|
||||||
"console": false,
|
|
||||||
"extrakey": true,
|
|
||||||
"mousekey": false,
|
|
||||||
"nkro": false,
|
|
||||||
"rgblight": false
|
|
||||||
},
|
|
||||||
"bootmagic": {
|
"bootmagic": {
|
||||||
"matrix": [0, 13]
|
"matrix": [0, 13]
|
||||||
},
|
},
|
||||||
|
@ -4,3 +4,6 @@
|
|||||||
|
|
||||||
#undef RP_I2C_USE_I2C0
|
#undef RP_I2C_USE_I2C0
|
||||||
#define RP_I2C_USE_I2C0 TRUE
|
#define RP_I2C_USE_I2C0 TRUE
|
||||||
|
|
||||||
|
#undef RP_I2C_USE_I2C1
|
||||||
|
#define RP_I2C_USE_I2C1 FALSE
|
||||||
|
@ -1,13 +1,20 @@
|
|||||||
# MCU name
|
|
||||||
MCU = RP2040
|
|
||||||
|
|
||||||
# Bootloader selection
|
|
||||||
BOOTLOADER = rp2040
|
|
||||||
|
|
||||||
# RP2040-specific options
|
# RP2040-specific options
|
||||||
ALLOW_WARNINGS = yes
|
ALLOW_WARNINGS = yes
|
||||||
PICO_INTRINSICS_ENABLED = no # ATM Unsupported by ChibiOS.
|
PICO_INTRINSICS_ENABLED = no # ATM Unsupported by ChibiOS.
|
||||||
|
|
||||||
|
BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
|
||||||
|
MOUSEKEY_ENABLE = no # Mouse keys
|
||||||
|
EXTRAKEY_ENABLE = yes # Audio control and System control
|
||||||
|
CONSOLE_ENABLE = no # Console for debug
|
||||||
|
COMMAND_ENABLE = no # 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
|
||||||
|
BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
|
||||||
|
|
||||||
|
ENCODER_ENABLE = yes
|
||||||
|
|
||||||
RGB_MATRIX_ENABLE = yes
|
RGB_MATRIX_ENABLE = yes
|
||||||
RGB_MATRIX_DRIVER = WS2812
|
RGB_MATRIX_DRIVER = WS2812
|
||||||
WS2812_DRIVER = vendor
|
WS2812_DRIVER = vendor
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
# define OLED_DISPLAY_ADDRESS 0x3C
|
# define OLED_DISPLAY_ADDRESS 0x3C
|
||||||
|
|
||||||
/* I2C Conf */
|
/* I2C Conf */
|
||||||
# define I2C_DRIVER I2CD1
|
# define I2C_DRIVER I2CD0
|
||||||
# define I2C1_SDA_PIN GP0
|
# define I2C1_SDA_PIN GP0
|
||||||
# define I2C1_SCL_PIN GP1
|
# define I2C1_SCL_PIN GP1
|
||||||
#endif
|
#endif
|
||||||
|
@ -8,18 +8,7 @@
|
|||||||
"pid": "0x0010",
|
"pid": "0x0010",
|
||||||
"device_version": "2.1.0"
|
"device_version": "2.1.0"
|
||||||
},
|
},
|
||||||
"features": {
|
"bootmagic": {
|
||||||
"audio": false,
|
|
||||||
"backlight": false,
|
|
||||||
"bootmagic": true,
|
|
||||||
"command": false,
|
|
||||||
"console": false,
|
|
||||||
"extrakey": true,
|
|
||||||
"mousekey": false,
|
|
||||||
"nkro": false,
|
|
||||||
"rgblight": false
|
|
||||||
},
|
|
||||||
"bootmagic": {
|
|
||||||
"matrix": [0, 13]
|
"matrix": [0, 13]
|
||||||
},
|
},
|
||||||
"encoder": {
|
"encoder": {
|
||||||
|
@ -4,3 +4,6 @@
|
|||||||
|
|
||||||
#undef RP_I2C_USE_I2C0
|
#undef RP_I2C_USE_I2C0
|
||||||
#define RP_I2C_USE_I2C0 TRUE
|
#define RP_I2C_USE_I2C0 TRUE
|
||||||
|
|
||||||
|
#undef RP_I2C_USE_I2C1
|
||||||
|
#define RP_I2C_USE_I2C1 FALSE
|
||||||
|
@ -1,13 +1,20 @@
|
|||||||
# MCU name
|
|
||||||
MCU = RP2040
|
|
||||||
|
|
||||||
# Bootloader selection
|
|
||||||
BOOTLOADER = rp2040
|
|
||||||
|
|
||||||
# RP2040-specific options
|
# RP2040-specific options
|
||||||
ALLOW_WARNINGS = yes
|
ALLOW_WARNINGS = yes
|
||||||
PICO_INTRINSICS_ENABLED = no # ATM Unsupported by ChibiOS.
|
PICO_INTRINSICS_ENABLED = no # ATM Unsupported by ChibiOS.
|
||||||
|
|
||||||
|
BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
|
||||||
|
MOUSEKEY_ENABLE = no # Mouse keys
|
||||||
|
EXTRAKEY_ENABLE = yes # Audio control and System control
|
||||||
|
CONSOLE_ENABLE = no # Console for debug
|
||||||
|
COMMAND_ENABLE = no # 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
|
||||||
|
BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
|
||||||
|
|
||||||
|
ENCODER_ENABLE = yes
|
||||||
|
|
||||||
RGB_MATRIX_ENABLE = yes
|
RGB_MATRIX_ENABLE = yes
|
||||||
RGB_MATRIX_DRIVER = WS2812
|
RGB_MATRIX_DRIVER = WS2812
|
||||||
WS2812_DRIVER = vendor
|
WS2812_DRIVER = vendor
|
||||||
|
Loading…
Reference in New Issue
Block a user