Compare commits
3 Commits
0.15.13
...
json_custo
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9eaee65ac3 | ||
|
|
5b0b8ba654 | ||
|
|
0a33ce0659 |
@@ -12,6 +12,12 @@
|
||||
"minLength": 1,
|
||||
"pattern": "^[0-9a-z_]*$"
|
||||
},
|
||||
"keycode": {
|
||||
"type": "string",
|
||||
"minLength": 1,
|
||||
"maxLength": 250,
|
||||
"pattern": "^[A-Z_][0-9A-Z_()]*$"
|
||||
},
|
||||
"hex_number_2d": {
|
||||
"type": "string",
|
||||
"pattern": "^0x[0-9A-F]{2}$"
|
||||
|
||||
@@ -77,6 +77,10 @@
|
||||
"lto": {"type": "boolean"},
|
||||
}
|
||||
},
|
||||
"custom_keycodes": {
|
||||
"type": "array",
|
||||
"items": {"$ref": "qmk.definitions.v1#/keycode"}
|
||||
},
|
||||
"diode_direction": {
|
||||
"type": "string",
|
||||
"enum": ["COL2ROW", "ROW2COL"]
|
||||
|
||||
@@ -5,6 +5,11 @@
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"author": {"type": "string"},
|
||||
"config": {"$ref": "qmk.keyboard.v1"},
|
||||
"custom_keycodes": {
|
||||
"type": "array",
|
||||
"items": {"$ref": "qmk.definitions.v1#/keycode"}
|
||||
},
|
||||
"keyboard": {"$ref": "qmk.definitions.v1#/text_identifier"},
|
||||
"keymap": {"$ref": "qmk.definitions.v1#/text_identifier"},
|
||||
"layout": {"$ref": "qmk.definitions.v1#/layout_macro"},
|
||||
@@ -12,13 +17,12 @@
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "array",
|
||||
"items": {"type": "string"}
|
||||
"items": {"$ref": "qmk.definitions.v1#/keycode"}
|
||||
}
|
||||
},
|
||||
"config": {"$ref": "qmk.keyboard.v1"},
|
||||
"notes": {
|
||||
"type": "string",
|
||||
"description": "asdf"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -17,17 +17,6 @@
|
||||
|
||||
#include "quantum.h"
|
||||
|
||||
enum TWOx1800_keycodes {
|
||||
ENC_BTN1 = SAFE_RANGE,
|
||||
ENC_BTN2,
|
||||
ENC_BTN3,
|
||||
ENC_BTN4,
|
||||
NEW_SAFE_RANGE
|
||||
};
|
||||
|
||||
#undef SAFE_RANGE
|
||||
#define SAFE_RANGE NEW_SAFE_RANGE
|
||||
|
||||
// Encoder update function that returns true/false
|
||||
bool encoder_update_keymap(uint8_t index, bool clockwise);
|
||||
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
"debounce": 5,
|
||||
"processor": "at90usb1286",
|
||||
"bootloader": "halfkay",
|
||||
"custom_keycodes": ["ENC_BTN1", "ENC_BTN2", "ENC_BTN3", "ENC_BTN4"],
|
||||
"diode_direction": "ROW2COL",
|
||||
"features": {
|
||||
"audio": true,
|
||||
|
||||
@@ -51,6 +51,23 @@ def generate_layouts(cli):
|
||||
cli.log.error('%s: Invalid matrix config.', cli.config.generate_layouts.keyboard)
|
||||
return False
|
||||
|
||||
if 'custom_keycodes' in kb_info_json:
|
||||
layouts_h_lines.append('\n#ifndef __ASSEMBLER__')
|
||||
layouts_h_lines.append('\n#include "quantum_keycodes.h"')
|
||||
layouts_h_lines.append('\nenum custom_keycodes {')
|
||||
first = True
|
||||
for keycode in kb_info_json['custom_keycodes']:
|
||||
if first:
|
||||
first = False
|
||||
layouts_h_lines.append(f'\t{keycode} = SAFE_RANGE,')
|
||||
else:
|
||||
layouts_h_lines.append(f'\t{keycode},')
|
||||
layouts_h_lines.append('\tNEW_SAFE_RANGE')
|
||||
layouts_h_lines.append('};\n')
|
||||
layouts_h_lines.append('#undef SAFE_RANGE')
|
||||
layouts_h_lines.append('#define SAFE_RANGE NEW_SAFE_RANGE')
|
||||
layouts_h_lines.append('#endif // __ASSEMBLER__')
|
||||
|
||||
for layout_name in kb_info_json['layouts']:
|
||||
if kb_info_json['layouts'][layout_name]['c_macro']:
|
||||
continue
|
||||
|
||||
Reference in New Issue
Block a user