~ruther/qmk_firmware

4efe6330c49f076b9c01d3f609dea0cd9f9b0214 — Wilba 3 years ago 493d422
VIA Encoder Map Support (#17734)

2 files changed, 15 insertions(+), 1 deletions(-)

M quantum/via.c
M quantum/via.h
M quantum/via.c => quantum/via.c +12 -0
@@ 397,6 397,18 @@ void raw_hid_receive(uint8_t *data, uint8_t length) {
            dynamic_keymap_set_buffer(offset, size, &command_data[3]);
            break;
        }
#ifdef ENCODER_MAP_ENABLE
        case id_dynamic_keymap_get_encoder: {
            uint16_t keycode = dynamic_keymap_get_encoder(command_data[0], command_data[1], command_data[2] != 0);
            command_data[3]  = keycode >> 8;
            command_data[4]  = keycode & 0xFF;
            break;
        }
        case id_dynamic_keymap_set_encoder: {
            dynamic_keymap_set_encoder(command_data[0], command_data[1], command_data[2] != 0, (command_data[3] << 8) | command_data[4]);
            break;
        }
#endif
        default: {
            // The command ID is not known
            // Return the unhandled state

M quantum/via.h => quantum/via.h +3 -1
@@ 58,7 58,7 @@

// This is changed only when the command IDs change,
// so VIA Configurator can detect compatible firmware.
#define VIA_PROTOCOL_VERSION 0x0009
#define VIA_PROTOCOL_VERSION 0x000A

enum via_command_id {
    id_get_protocol_version                 = 0x01, // always 0x01


@@ 80,6 80,8 @@ enum via_command_id {
    id_dynamic_keymap_get_layer_count       = 0x11,
    id_dynamic_keymap_get_buffer            = 0x12,
    id_dynamic_keymap_set_buffer            = 0x13,
    id_dynamic_keymap_get_encoder           = 0x14,
    id_dynamic_keymap_set_encoder           = 0x15,
    id_unhandled                            = 0xFF,
};