2020-10-14 21:16:42 +02:00
|
|
|
/* 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
|
|
|
|
|
2020-10-18 20:36:45 +02:00
|
|
|
#include <inttypes.h>
|
2020-12-07 01:23:57 +01:00
|
|
|
#include <stdbool.h>
|
2020-10-18 20:36:45 +02:00
|
|
|
|
2022-03-07 03:04:27 +01:00
|
|
|
#include "eeprom.h"
|
2021-10-09 20:33:26 +02:00
|
|
|
#include "action.h"
|
2021-07-12 06:00:32 +02:00
|
|
|
|
2023-03-19 00:51:58 +01:00
|
|
|
#define VIAL_PROTOCOL_VERSION ((uint32_t)0x00000006)
|
2021-07-09 01:27:26 +02:00
|
|
|
#define VIAL_RAW_EPSIZE 32
|
2020-10-18 20:36:45 +02:00
|
|
|
|
2021-07-03 19:30:43 +02:00
|
|
|
void vial_init(void);
|
2020-10-14 21:16:42 +02:00
|
|
|
void vial_handle_cmd(uint8_t *data, uint8_t length);
|
2021-10-09 20:33:26 +02:00
|
|
|
bool process_record_vial(uint16_t keycode, keyrecord_t *record);
|
2020-12-07 01:23:57 +01:00
|
|
|
|
2020-12-27 14:03:10 +01:00
|
|
|
extern int vial_unlocked;
|
|
|
|
extern int vial_unlock_in_progress;
|
2023-09-09 04:53:27 +02:00
|
|
|
extern uint16_t g_vial_magic_keycode_override;
|
2020-12-29 21:36:12 +01:00
|
|
|
|
|
|
|
enum {
|
|
|
|
vial_get_keyboard_id = 0x00,
|
|
|
|
vial_get_size = 0x01,
|
|
|
|
vial_get_def = 0x02,
|
|
|
|
vial_get_encoder = 0x03,
|
|
|
|
vial_set_encoder = 0x04,
|
2020-12-30 01:30:29 +01:00
|
|
|
vial_get_unlock_status = 0x05,
|
2020-12-29 21:36:12 +01:00
|
|
|
vial_unlock_start = 0x06,
|
|
|
|
vial_unlock_poll = 0x07,
|
|
|
|
vial_lock = 0x08,
|
2021-06-30 01:43:11 +02:00
|
|
|
vial_qmk_settings_query = 0x09,
|
|
|
|
vial_qmk_settings_get = 0x0A,
|
|
|
|
vial_qmk_settings_set = 0x0B,
|
2021-07-01 21:00:12 +02:00
|
|
|
vial_qmk_settings_reset = 0x0C,
|
2021-07-03 19:30:43 +02:00
|
|
|
vial_dynamic_entry_op = 0x0D, /* operate on tapdance, combos, etc */
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
dynamic_vial_get_number_of_entries = 0x00,
|
|
|
|
dynamic_vial_tap_dance_get = 0x01,
|
|
|
|
dynamic_vial_tap_dance_set = 0x02,
|
2021-07-04 16:11:04 +02:00
|
|
|
dynamic_vial_combo_get = 0x03,
|
|
|
|
dynamic_vial_combo_set = 0x04,
|
2021-09-30 19:16:41 +02:00
|
|
|
dynamic_vial_key_override_get = 0x05,
|
|
|
|
dynamic_vial_key_override_set = 0x06,
|
2020-12-29 21:36:12 +01:00
|
|
|
};
|
2021-01-03 15:12:16 +01:00
|
|
|
|
2022-01-03 14:51:14 +01:00
|
|
|
#define VIAL_MACRO_EXT_TAP 5
|
|
|
|
#define VIAL_MACRO_EXT_DOWN 6
|
|
|
|
#define VIAL_MACRO_EXT_UP 7
|
|
|
|
|
|
|
|
void vial_keycode_down(uint16_t keycode);
|
|
|
|
void vial_keycode_up(uint16_t keycode);
|
|
|
|
void vial_keycode_tap(uint16_t keycode);
|
|
|
|
|
2021-07-04 01:48:01 +02:00
|
|
|
/* Fake position in keyboard matrix, can't use 255 as that is immediately rejected by IS_NOEVENT
|
|
|
|
used to send arbitrary keycodes thru process_record_quantum_helper */
|
2022-07-12 02:42:15 +02:00
|
|
|
#define VIAL_MATRIX_MAGIC 240
|
2021-07-03 19:30:43 +02:00
|
|
|
|
|
|
|
|
2021-09-30 19:16:41 +02:00
|
|
|
#ifdef TAP_DANCE_ENABLE
|
2021-07-03 19:30:43 +02:00
|
|
|
#define VIAL_TAP_DANCE_ENABLE
|
|
|
|
|
|
|
|
#ifndef VIAL_TAP_DANCE_ENTRIES
|
2022-03-07 03:04:27 +01:00
|
|
|
#if TOTAL_EEPROM_BYTE_COUNT > 4000
|
2021-07-12 06:00:32 +02:00
|
|
|
#define VIAL_TAP_DANCE_ENTRIES 32
|
2022-03-07 03:04:27 +01:00
|
|
|
#elif TOTAL_EEPROM_BYTE_COUNT > 2000
|
2021-07-12 06:00:32 +02:00
|
|
|
#define VIAL_TAP_DANCE_ENTRIES 16
|
2022-03-07 03:04:27 +01:00
|
|
|
#elif TOTAL_EEPROM_BYTE_COUNT > 1000
|
2021-07-12 06:00:32 +02:00
|
|
|
#define VIAL_TAP_DANCE_ENTRIES 8
|
|
|
|
#else
|
|
|
|
#define VIAL_TAP_DANCE_ENTRIES 4
|
|
|
|
#endif
|
2021-07-03 19:30:43 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint16_t on_tap;
|
|
|
|
uint16_t on_hold;
|
|
|
|
uint16_t on_double_tap;
|
|
|
|
uint16_t on_tap_hold;
|
|
|
|
uint16_t custom_tapping_term;
|
|
|
|
} vial_tap_dance_entry_t;
|
|
|
|
_Static_assert(sizeof(vial_tap_dance_entry_t) == 10, "Unexpected size of the vial_tap_dance_entry_t structure");
|
|
|
|
|
|
|
|
#else
|
|
|
|
#undef VIAL_TAP_DANCE_ENTRIES
|
|
|
|
#define VIAL_TAP_DANCE_ENTRIES 0
|
|
|
|
#endif
|
2021-07-04 05:12:12 +02:00
|
|
|
|
2021-09-30 19:16:41 +02:00
|
|
|
|
2021-07-04 05:12:12 +02:00
|
|
|
#ifdef COMBO_ENABLE
|
|
|
|
#define VIAL_COMBO_ENABLE
|
|
|
|
|
|
|
|
#ifndef VIAL_COMBO_ENTRIES
|
2022-03-07 03:04:27 +01:00
|
|
|
#if TOTAL_EEPROM_BYTE_COUNT > 4000
|
2021-07-12 06:00:32 +02:00
|
|
|
#define VIAL_COMBO_ENTRIES 32
|
2022-03-07 03:04:27 +01:00
|
|
|
#elif TOTAL_EEPROM_BYTE_COUNT > 2000
|
2021-07-12 06:00:32 +02:00
|
|
|
#define VIAL_COMBO_ENTRIES 16
|
2022-03-07 03:04:27 +01:00
|
|
|
#elif TOTAL_EEPROM_BYTE_COUNT > 1000
|
2021-07-12 06:00:32 +02:00
|
|
|
#define VIAL_COMBO_ENTRIES 8
|
|
|
|
#else
|
|
|
|
#define VIAL_COMBO_ENTRIES 4
|
|
|
|
#endif
|
2021-07-04 05:12:12 +02:00
|
|
|
#endif
|
|
|
|
|
2021-07-04 16:11:04 +02:00
|
|
|
typedef struct {
|
|
|
|
uint16_t input[4];
|
|
|
|
uint16_t output;
|
|
|
|
} vial_combo_entry_t;
|
|
|
|
_Static_assert(sizeof(vial_combo_entry_t) == 10, "Unexpected size of the vial_combo_entry_t structure");
|
|
|
|
|
2021-07-04 05:12:12 +02:00
|
|
|
/* also to catch wrong include order in e.g. process_combo.h */
|
|
|
|
#ifdef COMBO_COUNT
|
|
|
|
#error COMBO_COUNT redefined - define VIAL_COMBO_ENTRIES instead
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define COMBO_COUNT VIAL_COMBO_ENTRIES
|
|
|
|
|
2021-07-09 00:12:04 +02:00
|
|
|
#else
|
2021-07-12 06:00:32 +02:00
|
|
|
#undef VIAL_COMBO_ENTRIES
|
2021-07-09 00:12:04 +02:00
|
|
|
#define VIAL_COMBO_ENTRIES 0
|
2021-07-04 05:12:12 +02:00
|
|
|
#endif
|
2021-09-30 19:16:41 +02:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef KEY_OVERRIDE_ENABLE
|
|
|
|
#define VIAL_KEY_OVERRIDE_ENABLE
|
|
|
|
|
|
|
|
#include "process_key_override.h"
|
|
|
|
|
|
|
|
#ifndef VIAL_KEY_OVERRIDE_ENTRIES
|
2022-03-28 06:42:36 +02:00
|
|
|
#if TOTAL_EEPROM_BYTE_COUNT > 4000
|
2021-09-30 19:16:41 +02:00
|
|
|
#define VIAL_KEY_OVERRIDE_ENTRIES 32
|
2022-03-28 06:42:36 +02:00
|
|
|
#elif TOTAL_EEPROM_BYTE_COUNT > 2000
|
2021-09-30 19:16:41 +02:00
|
|
|
#define VIAL_KEY_OVERRIDE_ENTRIES 16
|
2022-03-28 06:42:36 +02:00
|
|
|
#elif TOTAL_EEPROM_BYTE_COUNT > 1000
|
2021-09-30 19:16:41 +02:00
|
|
|
#define VIAL_KEY_OVERRIDE_ENTRIES 8
|
|
|
|
#else
|
|
|
|
#define VIAL_KEY_OVERRIDE_ENTRIES 4
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* the key override structure as it is stored in eeprom and transferred to vial-gui;
|
|
|
|
it is deserialized into key_override_t by vial_get_key_override */
|
|
|
|
typedef struct {
|
|
|
|
uint16_t trigger;
|
|
|
|
uint16_t replacement;
|
|
|
|
uint16_t layers;
|
|
|
|
uint8_t trigger_mods;
|
|
|
|
uint8_t negative_mod_mask;
|
|
|
|
uint8_t suppressed_mods;
|
|
|
|
uint8_t options;
|
|
|
|
} vial_key_override_entry_t;
|
|
|
|
_Static_assert(sizeof(vial_key_override_entry_t) == 10, "Unexpected size of the vial_key_override_entry_t structure");
|
|
|
|
|
|
|
|
enum {
|
|
|
|
vial_ko_option_activation_trigger_down = (1 << 0),
|
|
|
|
vial_ko_option_activation_required_mod_down = (1 << 1),
|
|
|
|
vial_ko_option_activation_negative_mod_up = (1 << 2),
|
|
|
|
vial_ko_option_one_mod = (1 << 3),
|
|
|
|
vial_ko_option_no_reregister_trigger = (1 << 4),
|
|
|
|
vial_ko_option_no_unregister_on_other_key_down = (1 << 5),
|
|
|
|
vial_ko_enabled = (1 << 7),
|
|
|
|
};
|
|
|
|
|
|
|
|
#else
|
|
|
|
#undef VIAL_KEY_OVERRIDE_ENTRIES
|
|
|
|
#define VIAL_KEY_OVERRIDE_ENTRIES 0
|
|
|
|
#endif
|