Swap G431 to transient EEPROM. Add G431 and G474 onekeys. (#21282)

This commit is contained in:
Nick Brassel 2023-06-19 15:02:57 +10:00 committed by GitHub
parent de49bcd8e8
commit 0774381f81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 55 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{
"keyboard_name": "Onekey Nucleo G431RB",
"processor": "STM32G431",
"bootloader": "stm32-dfu",
"matrix_pins": {
"cols": ["A9"],
"rows": ["A10"]
},
"backlight": {
"pin": "B8"
},
"ws2812": {
"pin": "A0"
},
"apa102": {
"data_pin": "A0",
"clock_pin": "B13"
}
}

View File

@ -0,0 +1,7 @@
# ST Microelectronics Nucleo64-G431RB onekey
Supported Hardware: <https://www.st.com/en/evaluation-tools/nucleo-g431rb.html>
To trigger keypress, short together pins *A9* and *A10*.
The usual USB connection to ST-Link will not work for QMK -- pins *A11* and *A12* need to be connected to *D-* and *D+* respectively.

View File

@ -0,0 +1,19 @@
{
"keyboard_name": "Onekey Nucleo G474RE",
"processor": "STM32G474",
"bootloader": "stm32-dfu",
"matrix_pins": {
"cols": ["A9"],
"rows": ["A10"]
},
"backlight": {
"pin": "B8"
},
"ws2812": {
"pin": "A0"
},
"apa102": {
"data_pin": "A0",
"clock_pin": "B13"
}
}

View File

@ -0,0 +1,7 @@
# ST Microelectronics Nucleo64-G474RE onekey
Supported Hardware: <https://www.st.com/en/evaluation-tools/nucleo-g474re.html>
To trigger keypress, short together pins *A9* and *A10*.
The usual USB connection to ST-Link will not work for QMK -- pins *A11* and *A12* need to be connected to *D-* and *D+* respectively.

View File

@ -546,6 +546,9 @@ ifneq ($(findstring STM32G431, $(MCU)),)
# Bootloader address for STM32 DFU
STM32_BOOTLOADER_ADDRESS ?= 0x1FFF0000
# Default to transient driver as ChibiOS EFL is currently broken for single-bank G4xx devices
EEPROM_DRIVER ?= transient
endif
ifneq ($(findstring STM32G474, $(MCU)),)