fix Oled config

This commit is contained in:
Ciaanh 2023-04-28 01:48:40 +02:00
parent 2d8b621854
commit 47db2ea409
8 changed files with 35 additions and 37 deletions

View File

@ -8,7 +8,7 @@
# define OLED_DISPLAY_ADDRESS 0x3C
/* I2C Conf */
# define I2C_DRIVER I2CD1
# define I2C_DRIVER I2CD0
# define I2C1_SDA_PIN GP0
# define I2C1_SCL_PIN GP1
#endif

View File

@ -8,17 +8,6 @@
"pid": "0x0010",
"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": {
"matrix": [0, 13]
},

View File

@ -4,3 +4,6 @@
#undef RP_I2C_USE_I2C0
#define RP_I2C_USE_I2C0 TRUE
#undef RP_I2C_USE_I2C1
#define RP_I2C_USE_I2C1 FALSE

View File

@ -1,13 +1,20 @@
# MCU name
MCU = RP2040
# Bootloader selection
BOOTLOADER = rp2040
# RP2040-specific options
ALLOW_WARNINGS = yes
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_DRIVER = WS2812
WS2812_DRIVER = vendor

View File

@ -8,7 +8,7 @@
# define OLED_DISPLAY_ADDRESS 0x3C
/* I2C Conf */
# define I2C_DRIVER I2CD1
# define I2C_DRIVER I2CD0
# define I2C1_SDA_PIN GP0
# define I2C1_SCL_PIN GP1
#endif

View File

@ -8,18 +8,7 @@
"pid": "0x0010",
"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]
},
"encoder": {

View File

@ -4,3 +4,6 @@
#undef RP_I2C_USE_I2C0
#define RP_I2C_USE_I2C0 TRUE
#undef RP_I2C_USE_I2C1
#define RP_I2C_USE_I2C1 FALSE

View File

@ -1,13 +1,20 @@
# MCU name
MCU = RP2040
# Bootloader selection
BOOTLOADER = rp2040
# RP2040-specific options
ALLOW_WARNINGS = yes
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_DRIVER = WS2812
WS2812_DRIVER = vendor