Onekey: migrate some stuff to data driven (#18502)
This commit is contained in:
		
							parent
							
								
									bad8c67189
								
							
						
					
					
						commit
						45b5ed5c6e
					
				
					 69 changed files with 259 additions and 335 deletions
				
			
		| 
						 | 
					@ -18,13 +18,9 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "config_common.h"
 | 
					#include "config_common.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MATRIX_COL_PINS { B0 }
 | 
					 | 
				
			||||||
#define MATRIX_ROW_PINS { A7 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define BACKLIGHT_PIN         A0
 | 
					 | 
				
			||||||
#define BACKLIGHT_PWM_DRIVER  PWMD5
 | 
					#define BACKLIGHT_PWM_DRIVER  PWMD5
 | 
				
			||||||
#define BACKLIGHT_PWM_CHANNEL 1
 | 
					#define BACKLIGHT_PWM_CHANNEL 1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define RGB_DI_PIN A1
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define ADC_PIN A0
 | 
					#define ADC_PIN A0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define RGB_CI_PIN A2
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,14 @@
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    "keyboard_name": "Onekey Blackpill STM32F401"
 | 
					    "keyboard_name": "Onekey Blackpill STM32F401",
 | 
				
			||||||
 | 
					    "development_board": "blackpill_f401",
 | 
				
			||||||
 | 
					    "matrix_pins": {
 | 
				
			||||||
 | 
					        "cols": ["B0"],
 | 
				
			||||||
 | 
					        "rows": ["A7"]
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "backlight": {
 | 
				
			||||||
 | 
					        "pin": "A0"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "rgblight": {
 | 
				
			||||||
 | 
					        "pin": "A1"
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,8 +1 @@
 | 
				
			||||||
# MCU name
 | 
					 | 
				
			||||||
MCU = STM32F401
 | 
					 | 
				
			||||||
BOARD = BLACKPILL_STM32_F401
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Bootloader selection
 | 
					 | 
				
			||||||
BOOTLOADER = stm32-dfu
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
KEYBOARD_SHARED_EP = yes
 | 
					KEYBOARD_SHARED_EP = yes
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -18,17 +18,13 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "config_common.h"
 | 
					#include "config_common.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MATRIX_COL_PINS { B0 }
 | 
					 | 
				
			||||||
#define MATRIX_ROW_PINS { A7 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define BACKLIGHT_PIN         A0
 | 
					 | 
				
			||||||
#define BACKLIGHT_PWM_DRIVER  PWMD5
 | 
					#define BACKLIGHT_PWM_DRIVER  PWMD5
 | 
				
			||||||
#define BACKLIGHT_PWM_CHANNEL 1
 | 
					#define BACKLIGHT_PWM_CHANNEL 1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define RGB_DI_PIN A1
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define ADC_PIN A0
 | 
					#define ADC_PIN A0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define RGB_CI_PIN A2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define SOLENOID_PIN B12
 | 
					#define SOLENOID_PIN B12
 | 
				
			||||||
#define SOLENOID_PINS { B12, B13, B14, B15 }
 | 
					#define SOLENOID_PINS { B12, B13, B14, B15 }
 | 
				
			||||||
#define SOLENOID_PINS_ACTIVE_STATE { high, high, low }
 | 
					#define SOLENOID_PINS_ACTIVE_STATE { high, high, low }
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,14 @@
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    "keyboard_name": "Onekey Blackpill STM32F411"
 | 
					    "keyboard_name": "Onekey Blackpill STM32F411",
 | 
				
			||||||
 | 
					    "development_board": "blackpill_f411",
 | 
				
			||||||
 | 
					    "matrix_pins": {
 | 
				
			||||||
 | 
					        "cols": ["B0"],
 | 
				
			||||||
 | 
					        "rows": ["A7"]
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "backlight": {
 | 
				
			||||||
 | 
					        "pin": "A0"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "rgblight": {
 | 
				
			||||||
 | 
					        "pin": "A1"
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,8 +1 @@
 | 
				
			||||||
# MCU name
 | 
					 | 
				
			||||||
MCU = STM32F411
 | 
					 | 
				
			||||||
BOARD = BLACKPILL_STM32_F411
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Bootloader selection
 | 
					 | 
				
			||||||
BOOTLOADER = stm32-dfu
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
KEYBOARD_SHARED_EP = yes
 | 
					KEYBOARD_SHARED_EP = yes
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -18,13 +18,9 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "config_common.h"
 | 
					#include "config_common.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MATRIX_COL_PINS { B0 }
 | 
					 | 
				
			||||||
#define MATRIX_ROW_PINS { A7 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define BACKLIGHT_PIN         A0
 | 
					 | 
				
			||||||
#define BACKLIGHT_PWM_DRIVER  PWMD5
 | 
					#define BACKLIGHT_PWM_DRIVER  PWMD5
 | 
				
			||||||
#define BACKLIGHT_PWM_CHANNEL 1
 | 
					#define BACKLIGHT_PWM_CHANNEL 1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define RGB_DI_PIN A1
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define ADC_PIN A0
 | 
					#define ADC_PIN A0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define RGB_CI_PIN A2
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,16 @@
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    "keyboard_name": "Onekey Blackpill STM32F411 TinyUF2"
 | 
					    "keyboard_name": "Onekey Blackpill STM32F411 TinyUF2",
 | 
				
			||||||
 | 
					    "processor": "STM32F411",
 | 
				
			||||||
 | 
					    "bootloader": "tinyuf2",
 | 
				
			||||||
 | 
					    "board": "BLACKPILL_STM32_F411",
 | 
				
			||||||
 | 
					    "matrix_pins": {
 | 
				
			||||||
 | 
					        "cols": ["B0"],
 | 
				
			||||||
 | 
					        "rows": ["A7"]
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "backlight": {
 | 
				
			||||||
 | 
					        "pin": "A0"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "rgblight": {
 | 
				
			||||||
 | 
					        "pin": "A1"
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,8 +1 @@
 | 
				
			||||||
# MCU name
 | 
					 | 
				
			||||||
MCU = STM32F411
 | 
					 | 
				
			||||||
BOARD = BLACKPILL_STM32_F411
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Bootloader selection
 | 
					 | 
				
			||||||
BOOTLOADER = tinyuf2
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
KEYBOARD_SHARED_EP = yes
 | 
					KEYBOARD_SHARED_EP = yes
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -18,13 +18,9 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "config_common.h"
 | 
					#include "config_common.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MATRIX_COL_PINS { B0 }
 | 
					 | 
				
			||||||
#define MATRIX_ROW_PINS { A7 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define BACKLIGHT_PIN         A0
 | 
					 | 
				
			||||||
#define BACKLIGHT_PWM_DRIVER  PWMD2
 | 
					#define BACKLIGHT_PWM_DRIVER  PWMD2
 | 
				
			||||||
#define BACKLIGHT_PWM_CHANNEL 1
 | 
					#define BACKLIGHT_PWM_CHANNEL 1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define RGB_DI_PIN A1
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define ADC_PIN A0
 | 
					#define ADC_PIN A0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define RGB_CI_PIN A2
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,14 @@
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    "keyboard_name": "Onekey Bluepill STM32F103"
 | 
					    "keyboard_name": "Onekey Bluepill STM32F103",
 | 
				
			||||||
 | 
					    "development_board": "bluepill",
 | 
				
			||||||
 | 
					    "matrix_pins": {
 | 
				
			||||||
 | 
					        "cols": ["B0"],
 | 
				
			||||||
 | 
					        "rows": ["A7"]
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "backlight": {
 | 
				
			||||||
 | 
					        "pin": "A0"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "rgblight": {
 | 
				
			||||||
 | 
					        "pin": "A1"
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,8 +1,2 @@
 | 
				
			||||||
# MCU name
 | 
					 | 
				
			||||||
MCU = STM32F103
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Bootloader selection
 | 
					 | 
				
			||||||
BOOTLOADER = stm32duino
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Enter lower-power sleep mode when on the ChibiOS idle thread
 | 
					# Enter lower-power sleep mode when on the ChibiOS idle thread
 | 
				
			||||||
OPT_DEFS += -DCORTEX_ENABLE_WFI_IDLE=TRUE
 | 
					OPT_DEFS += -DCORTEX_ENABLE_WFI_IDLE=TRUE
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -18,18 +18,13 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "config_common.h"
 | 
					#include "config_common.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MATRIX_COL_PINS { B0 }
 | 
					 | 
				
			||||||
#define MATRIX_ROW_PINS { A7 }
 | 
					 | 
				
			||||||
#define UNUSED_PINS
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define BACKLIGHT_PIN         A0
 | 
					 | 
				
			||||||
#define BACKLIGHT_PWM_DRIVER  PWMD2
 | 
					#define BACKLIGHT_PWM_DRIVER  PWMD2
 | 
				
			||||||
#define BACKLIGHT_PWM_CHANNEL 1
 | 
					#define BACKLIGHT_PWM_CHANNEL 1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define RGB_DI_PIN A1
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define ADC_PIN A0
 | 
					#define ADC_PIN A0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define RGB_CI_PIN A2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// This code does not fit into the really small flash of STM32F103x6 together
 | 
					// This code does not fit into the really small flash of STM32F103x6 together
 | 
				
			||||||
// with CONSOLE_ENABLE=yes, and the debugging console is probably more
 | 
					// with CONSOLE_ENABLE=yes, and the debugging console is probably more
 | 
				
			||||||
// important for the "okeney" testing firmware.  In a real firmware you may be
 | 
					// important for the "okeney" testing firmware.  In a real firmware you may be
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,15 @@
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    "keyboard_name": "Onekey Bluepill STM32F103C6"
 | 
					    "keyboard_name": "Onekey Bluepill STM32F103C6",
 | 
				
			||||||
 | 
					    "processor": "STM32F103",
 | 
				
			||||||
 | 
					    "board": "STM32_F103_STM32DUINO",
 | 
				
			||||||
 | 
					    "matrix_pins": {
 | 
				
			||||||
 | 
					        "cols": ["B0"],
 | 
				
			||||||
 | 
					        "rows": ["A7"]
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "backlight": {
 | 
				
			||||||
 | 
					        "pin": "A0"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "rgblight": {
 | 
				
			||||||
 | 
					        "pin": "A1"
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,12 +1,8 @@
 | 
				
			||||||
# MCU name
 | 
					 | 
				
			||||||
MCU = STM32F103
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Bootloader selection
 | 
					# Bootloader selection
 | 
				
			||||||
# Cannot use `BOOTLOADER = stm32duino` due to the need to override
 | 
					# Cannot use `BOOTLOADER = stm32duino` due to the need to override
 | 
				
			||||||
# `MCU_LDSCRIPT`, therefore all parameters need to be specified here manually.
 | 
					# `MCU_LDSCRIPT`, therefore all parameters need to be specified here manually.
 | 
				
			||||||
OPT_DEFS += -DBOOTLOADER_STM32DUINO
 | 
					OPT_DEFS += -DBOOTLOADER_STM32DUINO
 | 
				
			||||||
MCU_LDSCRIPT = STM32F103x6_stm32duino_bootloader
 | 
					MCU_LDSCRIPT = STM32F103x6_stm32duino_bootloader
 | 
				
			||||||
BOARD = STM32_F103_STM32DUINO
 | 
					 | 
				
			||||||
BOOTLOADER_TYPE = stm32duino
 | 
					BOOTLOADER_TYPE = stm32duino
 | 
				
			||||||
DFU_ARGS = -d 1EAF:0003 -a 2 -R
 | 
					DFU_ARGS = -d 1EAF:0003 -a 2 -R
 | 
				
			||||||
DFU_SUFFIX_ARGS = -v 1EAF -p 0003
 | 
					DFU_SUFFIX_ARGS = -v 1EAF -p 0003
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -17,16 +17,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#pragma once
 | 
					#pragma once
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/* key matrix size */
 | 
					 | 
				
			||||||
#define MATRIX_ROWS 1
 | 
					 | 
				
			||||||
#define MATRIX_COLS 1
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* COL2ROW, ROW2COL */
 | 
					 | 
				
			||||||
#define DIODE_DIRECTION COL2ROW
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
 | 
					 | 
				
			||||||
#define DEBOUNCE 5
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* define if matrix has ghost (lacks anti-ghosting diodes) */
 | 
					/* define if matrix has ghost (lacks anti-ghosting diodes) */
 | 
				
			||||||
//#define MATRIX_HAS_GHOST
 | 
					//#define MATRIX_HAS_GHOST
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -18,12 +18,6 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "config_common.h"
 | 
					#include "config_common.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MATRIX_COL_PINS { F4 }
 | 
					 | 
				
			||||||
#define MATRIX_ROW_PINS { F5 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define BACKLIGHT_PIN B6
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define RGB_DI_PIN F6
 | 
					 | 
				
			||||||
#define RGB_CI_PIN B1
 | 
					#define RGB_CI_PIN B1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define ADC_PIN F6
 | 
					#define ADC_PIN F6
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,14 @@
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    "keyboard_name": "Onekey Elite-C"
 | 
					    "keyboard_name": "Onekey Elite-C",
 | 
				
			||||||
 | 
					    "development_board": "elite_c",
 | 
				
			||||||
 | 
					    "matrix_pins": {
 | 
				
			||||||
 | 
					        "cols": ["F4"],
 | 
				
			||||||
 | 
					        "rows": ["F5"]
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "backlight": {
 | 
				
			||||||
 | 
					        "pin": "B6"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "rgblight": {
 | 
				
			||||||
 | 
					        "pin": "F6"
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,5 +0,0 @@
 | 
				
			||||||
# MCU name
 | 
					 | 
				
			||||||
MCU = atmega32u4
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Bootloader selection
 | 
					 | 
				
			||||||
BOOTLOADER = atmel-dfu
 | 
					 | 
				
			||||||
| 
						 | 
					@ -1,8 +0,0 @@
 | 
				
			||||||
// Copyright 2021 Nick Brassel (@tzarc)
 | 
					 | 
				
			||||||
// SPDX-License-Identifier: GPL-2.0-or-later
 | 
					 | 
				
			||||||
#pragma once
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#include "config_common.h"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define MATRIX_COL_PINS { B12 }
 | 
					 | 
				
			||||||
#define MATRIX_ROW_PINS { B13 }
 | 
					 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,9 @@
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    "keyboard_name": "Onekey WB32F3G71 Eval"
 | 
					    "keyboard_name": "Onekey WB32F3G71 Eval",
 | 
				
			||||||
 | 
					    "processor": "WB32F3G71",
 | 
				
			||||||
 | 
					    "bootloader": "wb32-dfu",
 | 
				
			||||||
 | 
					    "matrix_pins": {
 | 
				
			||||||
 | 
					        "cols": ["B12"],
 | 
				
			||||||
 | 
					        "rows": ["B13"]
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,9 +1,3 @@
 | 
				
			||||||
# MCU name
 | 
					 | 
				
			||||||
MCU = WB32F3G71
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Bootloader selection
 | 
					 | 
				
			||||||
BOOTLOADER = wb32-dfu
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
MOUSEKEY_ENABLE = no       # Mouse keys
 | 
					MOUSEKEY_ENABLE = no       # Mouse keys
 | 
				
			||||||
EXTRAKEY_ENABLE = no       # Audio control and System control
 | 
					EXTRAKEY_ENABLE = no       # Audio control and System control
 | 
				
			||||||
NKRO_ENABLE = no           # Enable N-Key Rollover
 | 
					NKRO_ENABLE = no           # Enable N-Key Rollover
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,8 +0,0 @@
 | 
				
			||||||
// Copyright 2021 Nick Brassel (@tzarc)
 | 
					 | 
				
			||||||
// SPDX-License-Identifier: GPL-2.0-or-later
 | 
					 | 
				
			||||||
#pragma once
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#include "config_common.h"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define MATRIX_COL_PINS { B12 }
 | 
					 | 
				
			||||||
#define MATRIX_ROW_PINS { B13 }
 | 
					 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,9 @@
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    "keyboard_name": "Onekey WB32FQ95 Eval"
 | 
					    "keyboard_name": "Onekey WB32FQ95 Eval",
 | 
				
			||||||
 | 
					    "processor": "WB32FQ95",
 | 
				
			||||||
 | 
					    "bootloader": "wb32-dfu",
 | 
				
			||||||
 | 
					    "matrix_pins": {
 | 
				
			||||||
 | 
					        "cols": ["B12"],
 | 
				
			||||||
 | 
					        "rows": ["B13"]
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,9 +1,3 @@
 | 
				
			||||||
# MCU name
 | 
					 | 
				
			||||||
MCU = WB32FQ95
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Bootloader selection
 | 
					 | 
				
			||||||
BOOTLOADER = wb32-dfu
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
MOUSEKEY_ENABLE = no       # Mouse keys
 | 
					MOUSEKEY_ENABLE = no       # Mouse keys
 | 
				
			||||||
EXTRAKEY_ENABLE = no       # Audio control and System control
 | 
					EXTRAKEY_ENABLE = no       # Audio control and System control
 | 
				
			||||||
NKRO_ENABLE = no           # Enable N-Key Rollover
 | 
					NKRO_ENABLE = no           # Enable N-Key Rollover
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -7,10 +7,23 @@
 | 
				
			||||||
        "pid": "0x6465",
 | 
					        "pid": "0x6465",
 | 
				
			||||||
        "device_version": "0.0.1"
 | 
					        "device_version": "0.0.1"
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
 | 
					    "diode_direction": "COL2ROW",
 | 
				
			||||||
 | 
					    "features": {
 | 
				
			||||||
 | 
					        "bootmagic": false,
 | 
				
			||||||
 | 
					        "mousekey": true,
 | 
				
			||||||
 | 
					        "extrakey": true,
 | 
				
			||||||
 | 
					        "console": true,
 | 
				
			||||||
 | 
					        "command": false,
 | 
				
			||||||
 | 
					        "nkro": true,
 | 
				
			||||||
 | 
					        "backlight": false,
 | 
				
			||||||
 | 
					        "rgblight": false,
 | 
				
			||||||
 | 
					        "audio": false
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "community_layouts": ["ortho_1x1"],
 | 
				
			||||||
    "layouts": {
 | 
					    "layouts": {
 | 
				
			||||||
        "LAYOUT_ortho_1x1": {
 | 
					        "LAYOUT_ortho_1x1": {
 | 
				
			||||||
            "layout": [
 | 
					            "layout": [
 | 
				
			||||||
                {"x": 0, "y": 0}
 | 
					                {"x": 0, "y": 0, "matrix": [0, 0]}
 | 
				
			||||||
            ]
 | 
					            ]
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -5,10 +5,6 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "config_common.h"
 | 
					#include "config_common.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MATRIX_COL_PINS \
 | 
					 | 
				
			||||||
    { GP4 }
 | 
					 | 
				
			||||||
#define MATRIX_ROW_PINS \
 | 
					 | 
				
			||||||
    { GP5 }
 | 
					 | 
				
			||||||
#define DEBUG_MATRIX_SCAN_RATE
 | 
					#define DEBUG_MATRIX_SCAN_RATE
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define QMK_WAITING_TEST_BUSY_PIN GP8
 | 
					#define QMK_WAITING_TEST_BUSY_PIN GP8
 | 
				
			||||||
| 
						 | 
					@ -18,8 +14,6 @@
 | 
				
			||||||
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_LED GP25
 | 
					#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_LED GP25
 | 
				
			||||||
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 500U
 | 
					#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 500U
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define RGB_DI_PIN A1
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
// settings for the oled keyboard demo with Adafruit 0.91" OLED display on the Stemma QT port
 | 
					// settings for the oled keyboard demo with Adafruit 0.91" OLED display on the Stemma QT port
 | 
				
			||||||
#define OLED_DISPLAY_128X32
 | 
					#define OLED_DISPLAY_128X32
 | 
				
			||||||
#define I2C_DRIVER I2CD1
 | 
					#define I2C_DRIVER I2CD1
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,11 @@
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    "keyboard_name": "Onekey KB2040"
 | 
					    "keyboard_name": "Onekey KB2040",
 | 
				
			||||||
 | 
					    "development_board": "kb2040",
 | 
				
			||||||
 | 
					    "matrix_pins": {
 | 
				
			||||||
 | 
					        "cols": ["GP4"],
 | 
				
			||||||
 | 
					        "rows": ["GP5"]
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "rgblight": {
 | 
				
			||||||
 | 
					        "pin": "A1"
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,9 +1,4 @@
 | 
				
			||||||
# MCU name
 | 
					 | 
				
			||||||
MCU = RP2040
 | 
					 | 
				
			||||||
BOOTLOADER = rp2040
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
OLED_ENABLE = yes
 | 
					OLED_ENABLE = yes
 | 
				
			||||||
OLED_DRIVER = SSD1306
 | 
					OLED_DRIVER = SSD1306
 | 
				
			||||||
 | 
					
 | 
				
			||||||
OPT_DEFS += -DHAL_USE_I2C=TRUE
 | 
					OPT_DEFS += -DHAL_USE_I2C=TRUE
 | 
				
			||||||
 | 
					 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,7 +1,7 @@
 | 
				
			||||||
#include <handwired/onekey/onekey.h>
 | 
					#include <quantum.h>
 | 
				
			||||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { LAYOUT_ortho_1x1(KC_A) };
 | 
					const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { LAYOUT_ortho_1x1(KC_A) };
 | 
				
			||||||
const char *buf[30] = {
 | 
					const char *buf[30] = {
 | 
				
			||||||
"#include <handwired/onekey/onekey.h>",
 | 
					"#include <quantum.h>",
 | 
				
			||||||
"const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { LAYOUT_ortho_1x1(KC_A) };",
 | 
					"const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { LAYOUT_ortho_1x1(KC_A) };",
 | 
				
			||||||
"const char *buf[30] = {",
 | 
					"const char *buf[30] = {",
 | 
				
			||||||
"",
 | 
					"",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -4,15 +4,10 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "config_common.h"
 | 
					#include "config_common.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MATRIX_COL_PINS { A2 }
 | 
					 | 
				
			||||||
#define MATRIX_ROW_PINS { A1 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define BACKLIGHT_PIN         B8
 | 
					 | 
				
			||||||
#define BACKLIGHT_PWM_DRIVER  PWMD4
 | 
					#define BACKLIGHT_PWM_DRIVER  PWMD4
 | 
				
			||||||
#define BACKLIGHT_PWM_CHANNEL 3
 | 
					#define BACKLIGHT_PWM_CHANNEL 3
 | 
				
			||||||
#define BACKLIGHT_PAL_MODE    2
 | 
					#define BACKLIGHT_PAL_MODE    2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define RGB_DI_PIN A0
 | 
					 | 
				
			||||||
#define RGB_CI_PIN B13
 | 
					#define RGB_CI_PIN B13
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define ADC_PIN A0
 | 
					#define ADC_PIN A0
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,15 @@
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    "keyboard_name": "Onekey Nucleo L432KC"
 | 
					    "keyboard_name": "Onekey Nucleo L432KC",
 | 
				
			||||||
 | 
					    "processor": "STM32L432",
 | 
				
			||||||
 | 
					    "bootloader": "stm32-dfu",
 | 
				
			||||||
 | 
					    "matrix_pins": {
 | 
				
			||||||
 | 
					        "cols": ["A2"],
 | 
				
			||||||
 | 
					        "rows": ["A1"]
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "backlight": {
 | 
				
			||||||
 | 
					        "pin": "B8"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "rgblight": {
 | 
				
			||||||
 | 
					        "pin": "A0"
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,5 +0,0 @@
 | 
				
			||||||
# MCU name
 | 
					 | 
				
			||||||
MCU = STM32L432
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Bootloader selection
 | 
					 | 
				
			||||||
BOOTLOADER = stm32-dfu
 | 
					 | 
				
			||||||
| 
						 | 
					@ -1,7 +1,7 @@
 | 
				
			||||||
// Copyright 2022 QMK
 | 
					// Copyright 2022 QMK
 | 
				
			||||||
// SPDX-License-Identifier: GPL-2.0-or-later
 | 
					// SPDX-License-Identifier: GPL-2.0-or-later
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "onekey.h"
 | 
					#include "quantum.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void keyboard_post_init_kb(void) {
 | 
					void keyboard_post_init_kb(void) {
 | 
				
			||||||
    debug_enable   = true;
 | 
					    debug_enable   = true;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,25 +0,0 @@
 | 
				
			||||||
/* Copyright 2019
 | 
					 | 
				
			||||||
 *
 | 
					 | 
				
			||||||
 * This program is free software: you can redistribute it and/or modify
 | 
					 | 
				
			||||||
 * it under the terms of the GNU General Public License as published by
 | 
					 | 
				
			||||||
 * the Free Software Foundation, either version 2 of the License, or
 | 
					 | 
				
			||||||
 * (at your option) any later version.
 | 
					 | 
				
			||||||
 *
 | 
					 | 
				
			||||||
 * This program is distributed in the hope that it will be useful,
 | 
					 | 
				
			||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
					 | 
				
			||||||
 * GNU General Public License for more details.
 | 
					 | 
				
			||||||
 *
 | 
					 | 
				
			||||||
 * You should have received a copy of the GNU General Public License
 | 
					 | 
				
			||||||
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
					 | 
				
			||||||
 */
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#pragma once
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#include "quantum.h"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define LAYOUT_ortho_1x1( \
 | 
					 | 
				
			||||||
    k00 \
 | 
					 | 
				
			||||||
) { \
 | 
					 | 
				
			||||||
    { k00 } \
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
| 
						 | 
					@ -18,12 +18,6 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "config_common.h"
 | 
					#include "config_common.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MATRIX_COL_PINS { F4 }
 | 
					 | 
				
			||||||
#define MATRIX_ROW_PINS { F5 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define BACKLIGHT_PIN B6
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define RGB_DI_PIN F6
 | 
					 | 
				
			||||||
#define RGB_CI_PIN B1
 | 
					#define RGB_CI_PIN B1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define ADC_PIN F6
 | 
					#define ADC_PIN F6
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,14 @@
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    "keyboard_name": "Onekey Pro Micro"
 | 
					    "keyboard_name": "Onekey Pro Micro",
 | 
				
			||||||
 | 
					    "development_board": "promicro",
 | 
				
			||||||
 | 
					    "matrix_pins": {
 | 
				
			||||||
 | 
					        "cols": ["F4"],
 | 
				
			||||||
 | 
					        "rows": ["F5"]
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "backlight": {
 | 
				
			||||||
 | 
					        "pin": "B6"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "rgblight": {
 | 
				
			||||||
 | 
					        "pin": "F6"
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,5 +0,0 @@
 | 
				
			||||||
# MCU name
 | 
					 | 
				
			||||||
MCU = atmega32u4
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Bootloader selection
 | 
					 | 
				
			||||||
BOOTLOADER = caterina
 | 
					 | 
				
			||||||
| 
						 | 
					@ -18,15 +18,10 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "config_common.h"
 | 
					#include "config_common.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MATRIX_COL_PINS { A2 }
 | 
					 | 
				
			||||||
#define MATRIX_ROW_PINS { A1 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define BACKLIGHT_PIN         B8
 | 
					 | 
				
			||||||
#define BACKLIGHT_PWM_DRIVER  PWMD4
 | 
					#define BACKLIGHT_PWM_DRIVER  PWMD4
 | 
				
			||||||
#define BACKLIGHT_PWM_CHANNEL 3
 | 
					#define BACKLIGHT_PWM_CHANNEL 3
 | 
				
			||||||
#define BACKLIGHT_PAL_MODE    2
 | 
					#define BACKLIGHT_PAL_MODE    2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define RGB_DI_PIN A0
 | 
					 | 
				
			||||||
#define RGB_CI_PIN B13
 | 
					#define RGB_CI_PIN B13
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define ADC_PIN A0
 | 
					#define ADC_PIN A0
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,14 @@
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    "keyboard_name": "Onekey Proton-C"
 | 
					    "keyboard_name": "Onekey Proton-C",
 | 
				
			||||||
 | 
					    "development_board": "proton_c",
 | 
				
			||||||
 | 
					    "matrix_pins": {
 | 
				
			||||||
 | 
					        "cols": ["A2"],
 | 
				
			||||||
 | 
					        "rows": ["A1"]
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "backlight": {
 | 
				
			||||||
 | 
					        "pin": "B8"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "rgblight": {
 | 
				
			||||||
 | 
					        "pin": "A0"
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,6 +0,0 @@
 | 
				
			||||||
# MCU name
 | 
					 | 
				
			||||||
MCU = STM32F303
 | 
					 | 
				
			||||||
BOARD = QMK_PROTON_C
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Bootloader selection
 | 
					 | 
				
			||||||
BOOTLOADER = stm32-dfu
 | 
					 | 
				
			||||||
| 
						 | 
					@ -5,10 +5,6 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "config_common.h"
 | 
					#include "config_common.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MATRIX_COL_PINS \
 | 
					 | 
				
			||||||
    { GP4 }
 | 
					 | 
				
			||||||
#define MATRIX_ROW_PINS \
 | 
					 | 
				
			||||||
    { GP5 }
 | 
					 | 
				
			||||||
#define DEBUG_MATRIX_SCAN_RATE
 | 
					#define DEBUG_MATRIX_SCAN_RATE
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define QMK_WAITING_TEST_BUSY_PIN GP8
 | 
					#define QMK_WAITING_TEST_BUSY_PIN GP8
 | 
				
			||||||
| 
						 | 
					@ -17,5 +13,3 @@
 | 
				
			||||||
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET
 | 
					#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET
 | 
				
			||||||
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_LED GP25
 | 
					#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_LED GP25
 | 
				
			||||||
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 500U
 | 
					#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 500U
 | 
				
			||||||
 | 
					 | 
				
			||||||
#define RGB_DI_PIN A1
 | 
					 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,12 @@
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    "keyboard_name": "Onekey RP2040"
 | 
					    "keyboard_name": "Onekey RP2040",
 | 
				
			||||||
 | 
					    "processor": "RP2040",
 | 
				
			||||||
 | 
					    "bootloader": "rp2040",
 | 
				
			||||||
 | 
					    "matrix_pins": {
 | 
				
			||||||
 | 
					        "cols": ["GP4"],
 | 
				
			||||||
 | 
					        "rows": ["GP5"]
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "rgblight": {
 | 
				
			||||||
 | 
					        "pin": "A1"
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +0,0 @@
 | 
				
			||||||
# MCU name
 | 
					 | 
				
			||||||
MCU = RP2040
 | 
					 | 
				
			||||||
BOOTLOADER = rp2040
 | 
					 | 
				
			||||||
| 
						 | 
					@ -1,16 +1 @@
 | 
				
			||||||
# 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 = no         # Commands for debug and configuration
 | 
					 | 
				
			||||||
NKRO_ENABLE = yes           # Enable N-Key Rollover
 | 
					 | 
				
			||||||
BACKLIGHT_ENABLE = no       # Enable keyboard backlight functionality
 | 
					 | 
				
			||||||
RGBLIGHT_ENABLE = no        # Enable keyboard RGB underglow
 | 
					 | 
				
			||||||
AUDIO_ENABLE = no           # Audio output
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
DEFAULT_FOLDER = handwired/onekey/promicro
 | 
					DEFAULT_FOLDER = handwired/onekey/promicro
 | 
				
			||||||
 | 
					 | 
				
			||||||
LAYOUTS = ortho_1x1
 | 
					 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -18,16 +18,9 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "config_common.h"
 | 
					#include "config_common.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MATRIX_COL_PINS \
 | 
					 | 
				
			||||||
    { B0 }
 | 
					 | 
				
			||||||
#define MATRIX_ROW_PINS \
 | 
					 | 
				
			||||||
    { A7 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define BACKLIGHT_PIN A1           /* Green LED. */
 | 
					 | 
				
			||||||
#define BACKLIGHT_PWM_DRIVER PWMD5 /* GD32 numbering scheme starts from 0, TIMER4 on GD32 boards is TIMER5 on STM32 boards. */
 | 
					#define BACKLIGHT_PWM_DRIVER PWMD5 /* GD32 numbering scheme starts from 0, TIMER4 on GD32 boards is TIMER5 on STM32 boards. */
 | 
				
			||||||
#define BACKLIGHT_PWM_CHANNEL 2    /* GD32 numbering scheme starts from 0, Channel 1 on GD32 boards is Channel 2 on STM32 boards. */
 | 
					#define BACKLIGHT_PWM_CHANNEL 2    /* GD32 numbering scheme starts from 0, Channel 1 on GD32 boards is Channel 2 on STM32 boards. */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define RGB_DI_PIN A2
 | 
					 | 
				
			||||||
#define RGB_CI_PIN B13
 | 
					#define RGB_CI_PIN B13
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define ADC_PIN A0
 | 
					#define ADC_PIN A0
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,16 @@
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    "keyboard_name": "Onekey Sipeed Longan Nano"
 | 
					    "keyboard_name": "Onekey Sipeed Longan Nano",
 | 
				
			||||||
 | 
					    "processor": "GD32VF103",
 | 
				
			||||||
 | 
					    "bootloader": "gd32v-dfu",
 | 
				
			||||||
 | 
					    "board": "SIPEED_LONGAN_NANO",
 | 
				
			||||||
 | 
					    "matrix_pins": {
 | 
				
			||||||
 | 
					        "cols": ["B0"],
 | 
				
			||||||
 | 
					        "rows": ["A7"]
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "backlight": {
 | 
				
			||||||
 | 
					        "pin": "A1"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "rgblight": {
 | 
				
			||||||
 | 
					        "pin": "A2"
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,11 +1 @@
 | 
				
			||||||
# MCU name
 | 
					 | 
				
			||||||
MCU   = GD32VF103
 | 
					 | 
				
			||||||
BOARD = SIPEED_LONGAN_NANO
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Bootloader selection
 | 
					 | 
				
			||||||
BOOTLOADER = gd32v-dfu
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Build Options
 | 
					 | 
				
			||||||
#   change yes to no to disable
 | 
					 | 
				
			||||||
#
 | 
					 | 
				
			||||||
KEYBOARD_SHARED_EP = yes
 | 
					KEYBOARD_SHARED_EP = yes
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -18,14 +18,10 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "config_common.h"
 | 
					#include "config_common.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MATRIX_COL_PINS { B4 }
 | 
					 | 
				
			||||||
#define MATRIX_ROW_PINS { B5 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define BACKLIGHT_PIN         C8
 | 
					 | 
				
			||||||
#define BACKLIGHT_PWM_DRIVER  PWMD3
 | 
					#define BACKLIGHT_PWM_DRIVER  PWMD3
 | 
				
			||||||
#define BACKLIGHT_PWM_CHANNEL 3
 | 
					#define BACKLIGHT_PWM_CHANNEL 3
 | 
				
			||||||
#define BACKLIGHT_PAL_MODE    0
 | 
					#define BACKLIGHT_PAL_MODE    0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define RGB_DI_PIN B15
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define ADC_PIN A0
 | 
					#define ADC_PIN A0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define RGB_CI_PIN B13
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,15 @@
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    "keyboard_name": "Onekey STM32F072 Discovery"
 | 
					    "keyboard_name": "Onekey STM32F072 Discovery",
 | 
				
			||||||
 | 
					    "processor": "STM32F072",
 | 
				
			||||||
 | 
					    "bootloader": "stm32-dfu",
 | 
				
			||||||
 | 
					    "matrix_pins": {
 | 
				
			||||||
 | 
					        "cols": ["B4"],
 | 
				
			||||||
 | 
					        "rows": ["B5"]
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "backlight": {
 | 
				
			||||||
 | 
					        "pin": "C8"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "rgblight": {
 | 
				
			||||||
 | 
					        "pin": "B15"
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,8 +1,2 @@
 | 
				
			||||||
# MCU name
 | 
					 | 
				
			||||||
MCU = STM32F072
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Bootloader selection
 | 
					 | 
				
			||||||
BOOTLOADER = stm32-dfu
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Enter lower-power sleep mode when on the ChibiOS idle thread
 | 
					# Enter lower-power sleep mode when on the ChibiOS idle thread
 | 
				
			||||||
OPT_DEFS += -DCORTEX_ENABLE_WFI_IDLE=TRUE
 | 
					OPT_DEFS += -DCORTEX_ENABLE_WFI_IDLE=TRUE
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,22 +0,0 @@
 | 
				
			||||||
/* Copyright 2019
 | 
					 | 
				
			||||||
 *
 | 
					 | 
				
			||||||
 * This program is free software: you can redistribute it and/or modify
 | 
					 | 
				
			||||||
 * it under the terms of the GNU General Public License as published by
 | 
					 | 
				
			||||||
 * the Free Software Foundation, either version 2 of the License, or
 | 
					 | 
				
			||||||
 * (at your option) any later version.
 | 
					 | 
				
			||||||
 *
 | 
					 | 
				
			||||||
 * This program is distributed in the hope that it will be useful,
 | 
					 | 
				
			||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
					 | 
				
			||||||
 * GNU General Public License for more details.
 | 
					 | 
				
			||||||
 *
 | 
					 | 
				
			||||||
 * You should have received a copy of the GNU General Public License
 | 
					 | 
				
			||||||
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
					 | 
				
			||||||
 */
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#pragma once
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#include "config_common.h"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define MATRIX_COL_PINS { C2 }
 | 
					 | 
				
			||||||
#define MATRIX_ROW_PINS { C3 }
 | 
					 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,9 @@
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    "keyboard_name": "Onekey Adafruit Feather STM32F405"
 | 
					    "keyboard_name": "Onekey Adafruit Feather STM32F405",
 | 
				
			||||||
 | 
					    "processor": "STM32F405",
 | 
				
			||||||
 | 
					    "bootloader": "stm32-dfu",
 | 
				
			||||||
 | 
					    "matrix_pins": {
 | 
				
			||||||
 | 
					        "cols": ["C2"],
 | 
				
			||||||
 | 
					        "rows": ["C3"],
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,8 +1,2 @@
 | 
				
			||||||
# MCU name
 | 
					 | 
				
			||||||
MCU = STM32F405
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Bootloader selection
 | 
					 | 
				
			||||||
BOOTLOADER = stm32-dfu
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Enter lower-power sleep mode when on the ChibiOS idle thread
 | 
					# Enter lower-power sleep mode when on the ChibiOS idle thread
 | 
				
			||||||
OPT_DEFS += -DCORTEX_ENABLE_WFI_IDLE=TRUE
 | 
					OPT_DEFS += -DCORTEX_ENABLE_WFI_IDLE=TRUE
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -18,14 +18,9 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "config_common.h"
 | 
					#include "config_common.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MATRIX_COL_PINS { F4 }
 | 
					 | 
				
			||||||
#define MATRIX_ROW_PINS { F5 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define BACKLIGHT_PIN B6
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define RGB_DI_PIN F6
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define ADC_PIN F6
 | 
					#define ADC_PIN F6
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define RGB_CI_PIN F7
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define QMK_WAITING_TEST_BUSY_PIN F6
 | 
					#define QMK_WAITING_TEST_BUSY_PIN F6
 | 
				
			||||||
#define QMK_WAITING_TEST_YIELD_PIN F7
 | 
					#define QMK_WAITING_TEST_YIELD_PIN F7
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,15 @@
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    "keyboard_name": "Onekey Teensy 2.0"
 | 
					    "keyboard_name": "Onekey Teensy 2.0",
 | 
				
			||||||
 | 
					    "processor": "atmega32u4",
 | 
				
			||||||
 | 
					    "bootloader": "halfkay",
 | 
				
			||||||
 | 
					    "matrix_pins": {
 | 
				
			||||||
 | 
					        "cols": ["F4"],
 | 
				
			||||||
 | 
					        "rows": ["F5"]
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "backlight": {
 | 
				
			||||||
 | 
					        "pin": "B6"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "rgblight": {
 | 
				
			||||||
 | 
					        "pin": "F6"
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,5 +0,0 @@
 | 
				
			||||||
# MCU name
 | 
					 | 
				
			||||||
MCU = atmega32u4
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Bootloader selection
 | 
					 | 
				
			||||||
BOOTLOADER = halfkay
 | 
					 | 
				
			||||||
| 
						 | 
					@ -18,14 +18,9 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "config_common.h"
 | 
					#include "config_common.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MATRIX_COL_PINS { F4 }
 | 
					 | 
				
			||||||
#define MATRIX_ROW_PINS { F5 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define BACKLIGHT_PIN B6
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define RGB_DI_PIN F6
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define ADC_PIN F6
 | 
					#define ADC_PIN F6
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define RGB_CI_PIN F7
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define QMK_WAITING_TEST_BUSY_PIN F6
 | 
					#define QMK_WAITING_TEST_BUSY_PIN F6
 | 
				
			||||||
#define QMK_WAITING_TEST_YIELD_PIN F7
 | 
					#define QMK_WAITING_TEST_YIELD_PIN F7
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,15 @@
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    "keyboard_name": "Onekey Teensy 2.0++"
 | 
					    "keyboard_name": "Onekey Teensy 2.0++",
 | 
				
			||||||
 | 
					    "processor": "at90usb1286",
 | 
				
			||||||
 | 
					    "bootloader": "halfkay",
 | 
				
			||||||
 | 
					    "matrix_pins": {
 | 
				
			||||||
 | 
					        "cols": ["F4"],
 | 
				
			||||||
 | 
					        "rows": ["F5"]
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "backlight": {
 | 
				
			||||||
 | 
					        "pin": "B6"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "rgblight": {
 | 
				
			||||||
 | 
					        "pin": "F6"
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,5 +0,0 @@
 | 
				
			||||||
# MCU name
 | 
					 | 
				
			||||||
MCU = at90usb1286
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Bootloader selection
 | 
					 | 
				
			||||||
BOOTLOADER = halfkay
 | 
					 | 
				
			||||||
| 
						 | 
					@ -19,9 +19,6 @@
 | 
				
			||||||
// TODO: including this causes "error: expected identifier before '(' token" errors
 | 
					// TODO: including this causes "error: expected identifier before '(' token" errors
 | 
				
			||||||
//#include "config_common.h"
 | 
					//#include "config_common.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MATRIX_COL_PINS { D5 }
 | 
					 | 
				
			||||||
#define MATRIX_ROW_PINS { B2 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
// i2c_master defines
 | 
					// i2c_master defines
 | 
				
			||||||
#define I2C1_SCL_PIN B0 // A2 on pinout = B0
 | 
					#define I2C1_SCL_PIN B0 // A2 on pinout = B0
 | 
				
			||||||
#define I2C1_SDA_PIN B1 // A3 on pinout = B1
 | 
					#define I2C1_SDA_PIN B1 // A3 on pinout = B1
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,9 @@
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    "keyboard_name": "Onekey Teensy 3.2"
 | 
					    "keyboard_name": "Onekey Teensy 3.2",
 | 
				
			||||||
 | 
					    "processor": "MK20DX256",
 | 
				
			||||||
 | 
					    "bootloader": "halfkay",
 | 
				
			||||||
 | 
					    "matrix_pins": {
 | 
				
			||||||
 | 
					        "cols": ["D5"],
 | 
				
			||||||
 | 
					        "rows": ["B2"]
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,8 +1,2 @@
 | 
				
			||||||
# MCU name
 | 
					 | 
				
			||||||
MCU = MK20DX256
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Bootloader selection
 | 
					 | 
				
			||||||
BOOTLOADER = halfkay
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Enter lower-power sleep mode when on the ChibiOS idle thread
 | 
					# Enter lower-power sleep mode when on the ChibiOS idle thread
 | 
				
			||||||
OPT_DEFS += -DCORTEX_ENABLE_WFI_IDLE=TRUE
 | 
					OPT_DEFS += -DCORTEX_ENABLE_WFI_IDLE=TRUE
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -19,9 +19,6 @@
 | 
				
			||||||
// TODO: including this causes "error: expected identifier before '(' token" errors
 | 
					// TODO: including this causes "error: expected identifier before '(' token" errors
 | 
				
			||||||
//#include "config_common.h"
 | 
					//#include "config_common.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MATRIX_COL_PINS { D5 } // 20/A6
 | 
					 | 
				
			||||||
#define MATRIX_ROW_PINS { B2 } // 19/A5
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
// i2c_master defines
 | 
					// i2c_master defines
 | 
				
			||||||
#define I2C1_SCL_PIN B0 // 16/A2 on pinout
 | 
					#define I2C1_SCL_PIN B0 // 16/A2 on pinout
 | 
				
			||||||
#define I2C1_SDA_PIN B1 // 17/A3 on pinout
 | 
					#define I2C1_SDA_PIN B1 // 17/A3 on pinout
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,9 @@
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    "keyboard_name": "Onekey Teensy 3.5"
 | 
					    "keyboard_name": "Onekey Teensy 3.5",
 | 
				
			||||||
 | 
					    "processor": "MK64FX512",
 | 
				
			||||||
 | 
					    "bootloader": "halfkay",
 | 
				
			||||||
 | 
					    "matrix_pins": {
 | 
				
			||||||
 | 
					        "cols": ["D5"], // 20/A6
 | 
				
			||||||
 | 
					        "rows": ["B2"]  // 19/A5
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,8 +1,2 @@
 | 
				
			||||||
# MCU name
 | 
					 | 
				
			||||||
MCU = MK64FX512
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Bootloader selection
 | 
					 | 
				
			||||||
BOOTLOADER = halfkay
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Enter lower-power sleep mode when on the ChibiOS idle thread
 | 
					# Enter lower-power sleep mode when on the ChibiOS idle thread
 | 
				
			||||||
OPT_DEFS += -DCORTEX_ENABLE_WFI_IDLE=TRUE
 | 
					OPT_DEFS += -DCORTEX_ENABLE_WFI_IDLE=TRUE
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -19,9 +19,6 @@
 | 
				
			||||||
// TODO: including this causes "error: expected identifier before '(' token" errors
 | 
					// TODO: including this causes "error: expected identifier before '(' token" errors
 | 
				
			||||||
//#include "config_common.h"
 | 
					//#include "config_common.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MATRIX_COL_PINS { D5 }
 | 
					 | 
				
			||||||
#define MATRIX_ROW_PINS { B2 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
// i2c_master defines
 | 
					// i2c_master defines
 | 
				
			||||||
#define I2C1_SCL_PIN B0 // A2 on pinout = B0
 | 
					#define I2C1_SCL_PIN B0 // A2 on pinout = B0
 | 
				
			||||||
#define I2C1_SDA_PIN B1 // A3 on pinout = B1
 | 
					#define I2C1_SDA_PIN B1 // A3 on pinout = B1
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,9 @@
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    "keyboard_name": "Onekey Teensy LC"
 | 
					    "keyboard_name": "Onekey Teensy LC",
 | 
				
			||||||
 | 
					    "processor": "MKL26Z64",
 | 
				
			||||||
 | 
					    "bootloader": "halfkay",
 | 
				
			||||||
 | 
					    "matrix_pins": {
 | 
				
			||||||
 | 
					        "cols": ["D5"],
 | 
				
			||||||
 | 
					        "rows": ["B2"]
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,9 +1,4 @@
 | 
				
			||||||
# MCU name
 | 
					 | 
				
			||||||
MCU = MKL26Z64
 | 
					 | 
				
			||||||
USE_CHIBIOS_CONTRIB = yes
 | 
					USE_CHIBIOS_CONTRIB = yes
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Bootloader selection
 | 
					 | 
				
			||||||
BOOTLOADER = halfkay
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Enter lower-power sleep mode when on the ChibiOS idle thread
 | 
					# Enter lower-power sleep mode when on the ChibiOS idle thread
 | 
				
			||||||
OPT_DEFS += -DCORTEX_ENABLE_WFI_IDLE=TRUE
 | 
					OPT_DEFS += -DCORTEX_ENABLE_WFI_IDLE=TRUE
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue