vial initial

This commit is contained in:
Ilya Zhuravlev 2020-10-14 15:16:42 -04:00
parent 4d59657b83
commit 9791507fae
7 changed files with 134 additions and 0 deletions

View File

@ -364,6 +364,17 @@ ifeq ($(strip $(VIA_ENABLE)), yes)
OPT_DEFS += -DVIA_ENABLE OPT_DEFS += -DVIA_ENABLE
endif endif
ifeq ($(strip $(VIAL_ENABLE)), yes)
SRC += $(QUANTUM_DIR)/vial.c
EXTRAINCDIRS += $(KEYMAP_OUTPUT)
OPT_DEFS += -DVIAL_ENABLE
$(QUANTUM_DIR)/vial.c: $(KEYMAP_OUTPUT)/vial_generated_keyboard_definition.h
$(KEYMAP_OUTPUT)/vial_generated_keyboard_definition.h: $(KEYMAP_PATH)/vial.json
python3 util/vial_generate_definition.py $(KEYMAP_PATH)/vial.json $(KEYMAP_OUTPUT)/vial_generated_keyboard_definition.h
endif
ifeq ($(strip $(DYNAMIC_KEYMAP_ENABLE)), yes) ifeq ($(strip $(DYNAMIC_KEYMAP_ENABLE)), yes)
OPT_DEFS += -DDYNAMIC_KEYMAP_ENABLE OPT_DEFS += -DDYNAMIC_KEYMAP_ENABLE
SRC += $(QUANTUM_DIR)/dynamic_keymap.c SRC += $(QUANTUM_DIR)/dynamic_keymap.c

View File

@ -47,6 +47,10 @@
#include "tmk_core/common/eeprom.h" #include "tmk_core/common/eeprom.h"
#include "version.h" // for QMK_BUILDDATE used in EEPROM magic #include "version.h" // for QMK_BUILDDATE used in EEPROM magic
#ifdef VIAL_ENABLE
#include "vial.h"
#endif
// Forward declare some helpers. // Forward declare some helpers.
#if defined(VIA_QMK_BACKLIGHT_ENABLE) #if defined(VIA_QMK_BACKLIGHT_ENABLE)
void via_qmk_backlight_set_value(uint8_t *data); void via_qmk_backlight_set_value(uint8_t *data);
@ -383,6 +387,12 @@ void raw_hid_receive(uint8_t *data, uint8_t length) {
bootloader_jump(); bootloader_jump();
break; break;
} }
#ifdef VIAL_ENABLE
case 0xFE: {
vial_handle_cmd(data, length);
break;
}
#endif
default: { default: {
// The command ID is not known // The command ID is not known
// Return the unhandled state // Return the unhandled state

56
quantum/vial.c Normal file
View File

@ -0,0 +1,56 @@
/* Copyright 2020 Ilya Zhuravlev
*
* 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/>.
*/
#include <string.h>
#include "protocol/usb_descriptor.h"
#include "vial_generated_keyboard_definition.h"
enum {
vial_get_size = 0x01,
vial_get_def = 0x02,
};
void vial_handle_cmd(uint8_t *msg, uint8_t length) {
/* All packets must be fixed 32 bytes */
if (length != RAW_EPSIZE)
return;
/* msg[0] is 0xFE -- prefix vial magic */
switch (msg[1]) {
/* Retrieve keyboard definition size */
case vial_get_size: {
uint32_t sz = sizeof(keyboard_definition);
msg[0] = sz & 0xFF;
msg[1] = (sz >> 8) & 0xFF;
msg[2] = (sz >> 16) & 0xFF;
msg[3] = (sz >> 24) & 0xFF;
break;
}
/* Retrieve 32-bytes block of the definition, page ID encoded within 2 bytes */
case vial_get_def: {
uint32_t page = msg[2] + (msg[3] << 8);
uint32_t start = page * RAW_EPSIZE;
uint32_t end = start + RAW_EPSIZE;
if (end < start || start >= sizeof(keyboard_definition))
return;
if (end > sizeof(keyboard_definition))
end = sizeof(keyboard_definition);
memcpy(msg, &keyboard_definition[start], end - start);
break;
}
}
}

19
quantum/vial.h Normal file
View File

@ -0,0 +1,19 @@
/* Copyright 2020 Ilya Zhuravlev
*
* 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
void vial_handle_cmd(uint8_t *data, uint8_t length);

View File

@ -940,8 +940,12 @@ const USB_Descriptor_String_t PROGMEM ProductString = {
}; };
#ifndef SERIAL_NUMBER #ifndef SERIAL_NUMBER
#ifdef VIAL_ENABLE
# define SERIAL_NUMBER vial:f64c2b3c
#else
# define SERIAL_NUMBER 0 # define SERIAL_NUMBER 0
#endif #endif
#endif
const USB_Descriptor_String_t PROGMEM SerialNumberString = { const USB_Descriptor_String_t PROGMEM SerialNumberString = {
.Header = { .Header = {

View File

@ -532,8 +532,12 @@ const PROGMEM uchar console_hid_report[] = {
#endif #endif
#ifndef SERIAL_NUMBER #ifndef SERIAL_NUMBER
#ifdef VIAL_ENABLE
# define SERIAL_NUMBER vial:f64c2b3c
#else
# define SERIAL_NUMBER 0 # define SERIAL_NUMBER 0
#endif #endif
#endif
#ifndef USB_MAX_POWER_CONSUMPTION #ifndef USB_MAX_POWER_CONSUMPTION
# define USB_MAX_POWER_CONSUMPTION 500 # define USB_MAX_POWER_CONSUMPTION 500

View File

@ -0,0 +1,30 @@
#!/usr/bin/env python3
import sys
import json
import lzma
def main():
if len(sys.argv) != 3:
print("Usage: vial_generate_defition.py path-to-vial.json path-to-output.h")
return 1
with open(sys.argv[1], "r") as inf:
data = inf.read()
# minify json
data = json.dumps(json.loads(data), separators=(',', ':')).strip()
# compress
data = lzma.compress(data.encode("utf-8"))
with open(sys.argv[2], "w") as outf:
outf.write("#pragma once\n")
outf.write("static const unsigned char keyboard_definition[] PROGMEM = {")
arr = ["0x{:02X}".format(b) for b in data]
outf.write(", ".join(arr))
outf.write("};\n")
return 0
if __name__ == "__main__":
sys.exit(main())