mirror of
https://github.com/Keychron/qmk_firmware.git
synced 2024-11-22 08:27:56 +06:00
Various fixes for new-keyboard (#16358)
This commit is contained in:
parent
c9f192bae8
commit
b0621223bc
20
data/templates/keyboard/config.h
Normal file
20
data/templates/keyboard/config.h
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
// Copyright %YEAR% %REAL_NAME% (@%USER_NAME%)
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Feature disable options
|
||||||
|
* These options are also useful to firmware size reduction.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* disable debug print */
|
||||||
|
//#define NO_DEBUG
|
||||||
|
|
||||||
|
/* disable print */
|
||||||
|
//#define NO_PRINT
|
||||||
|
|
||||||
|
/* disable action features */
|
||||||
|
//#define NO_ACTION_LAYER
|
||||||
|
//#define NO_ACTION_TAPPING
|
||||||
|
//#define NO_ACTION_ONESHOT
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
"keyboard_name": "%KEYBOARD%",
|
"keyboard_name": "%KEYBOARD%",
|
||||||
"maintainer": "%USER_NAME%",
|
"maintainer": "%USER_NAME%",
|
||||||
|
"manufacturer": "%REAL_NAME%",
|
||||||
"processor": "%MCU%",
|
"processor": "%MCU%",
|
||||||
"bootloader": "%BOOTLOADER%",
|
"bootloader": "%BOOTLOADER%",
|
||||||
"diode_direction": "COL2ROW",
|
"diode_direction": "COL2ROW",
|
||||||
|
|
|
@ -208,7 +208,15 @@ def new_keyboard(cli):
|
||||||
cli.log.error(f'Keyboard {{fg_cyan}}{kb_name}{{fg_reset}} already exists! Please choose a different name.')
|
cli.log.error(f'Keyboard {{fg_cyan}}{kb_name}{{fg_reset}} already exists! Please choose a different name.')
|
||||||
return 1
|
return 1
|
||||||
|
|
||||||
tokens = {'YEAR': str(date.today().year), 'KEYBOARD': kb_name, 'USER_NAME': user_name, 'REAL_NAME': real_name, 'LAYOUT': default_layout, 'MCU': mcu, 'BOOTLOADER': bootloader}
|
tokens = { # Comment here is to force multiline formatting
|
||||||
|
'YEAR': str(date.today().year),
|
||||||
|
'KEYBOARD': kb_name,
|
||||||
|
'USER_NAME': user_name,
|
||||||
|
'REAL_NAME': real_name,
|
||||||
|
'LAYOUT': default_layout,
|
||||||
|
'MCU': mcu,
|
||||||
|
'BOOTLOADER': bootloader
|
||||||
|
}
|
||||||
|
|
||||||
if cli.config.general.verbose:
|
if cli.config.general.verbose:
|
||||||
cli.log.info("Creating keyboard with:")
|
cli.log.info("Creating keyboard with:")
|
||||||
|
|
|
@ -49,6 +49,7 @@ def info_json(keyboard):
|
||||||
'parse_errors': [],
|
'parse_errors': [],
|
||||||
'parse_warnings': [],
|
'parse_warnings': [],
|
||||||
'maintainer': 'qmk',
|
'maintainer': 'qmk',
|
||||||
|
'manufacturer': 'qmk',
|
||||||
}
|
}
|
||||||
|
|
||||||
# Populate the list of JSON keymaps
|
# Populate the list of JSON keymaps
|
||||||
|
|
Loading…
Reference in New Issue
Block a user