Add plover hid support for LUFA and hopefully ChibiOS

Still no support for chibios.
This commit is contained in:
dnaq 2021-09-19 16:39:02 +02:00
parent 11f50b4010
commit 0f6d6af257
13 changed files with 203 additions and 26 deletions

View file

@ -92,9 +92,9 @@ ifeq ($(MUSIC_ENABLE), yes)
SRC += $(QUANTUM_DIR)/process_keycode/process_music.c SRC += $(QUANTUM_DIR)/process_keycode/process_music.c
endif endif
ifeq ($(strip $(PLOVER_ENABLE)), yes) ifeq ($(strip $(PLOVER_HID_ENABLE)), yes)
OPT_DEFS += -DPLOVER_ENABLE OPT_DEFS += -DPLOVER_HID_ENABLE
SRC += $(QUANTUM_DIR)/process_keycode/process_plover.c SRC += $(QUANTUM_DIR)/process_keycode/process_plover_hid.c
endif endif
ifeq ($(strip $(STENO_ENABLE)), yes) ifeq ($(strip $(STENO_ENABLE)), yes)

View file

@ -66,7 +66,7 @@ OTHER_OPTION_NAMES = \
KEYLOGGER_ENABLE \ KEYLOGGER_ENABLE \
LCD_BACKLIGHT_ENABLE \ LCD_BACKLIGHT_ENABLE \
MACROS_ENABLED \ MACROS_ENABLED \
PLOVER_ENABLE \ PLOVER_HID_ENABLE \
PS2_MOUSE_ENABLE \ PS2_MOUSE_ENABLE \
RAW_ENABLE \ RAW_ENABLE \
SWAP_HANDS_ENABLE \ SWAP_HANDS_ENABLE \

View file

@ -0,0 +1,89 @@
/* Copyright 2017 Joseph Wasson
*
* 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
#include "keymap.h"
// List of keycodes for the plover HID.
enum steno_keycodes {
PLV__MIN = QK_PLOVER_HID,
PLV_N1 = PLV__MIN,
PLV_N2,
PLV_N3,
PLV_N4,
PLV_N5,
PLV_N6,
PLV_N7,
PLV_N8,
PLV_N9,
PLV_NA,
PLV_NB,
PLV_NC,
PLV_X1,
PLV_S1,
PLV_TL,
PLV_PL,
PLV_HL,
PLV_ST1,
PLV_ST3,
PLV_FR,
PLV_PR,
PLV_LR,
PLV_TR,
PLV_DR,
PLV_X2,
PLV_S2,
PLV_KL,
PLV_WL,
PLV_RL,
PLV_ST2,
PLV_ST4,
PLV_RR,
PLV_BR,
PLV_GR,
PLV_SR,
PLV_ZR,
PLV_X3,
PLV_A,
PLV_O,
PLV_E,
PLV_U,
PLV_X4,
PLV_X5,
PLV_X6,
PLV_X7,
PLV_X8,
PLV_X9,
PLV_X10,
PLV_X11,
PLV_X12,
PLV_X13,
PLV_X14,
PLV_X15,
PLV_X16,
PLV_X17,
PLV_X18,
PLV_X19,
PLV_X20,
PLV_X21,
PLV_X22,
PLV_X23,
PLV_X24,
PLV_X25,
PLV_X26,
PLV__MAX = PLV_X26,
};

4
quantum/plover_hid.h Normal file
View file

@ -0,0 +1,4 @@
#pragma once
#define PLOVER_HID_SIMPLE_REPORT_SIZE 9
void plover_hid_send(uint8_t data[PLOVER_HID_SIMPLE_REPORT_SIZE]);

View file

@ -0,0 +1,23 @@
#include "process_plover_hid.h"
#include "keymap_plover_hid.h"
#include "plover_hid.h"
// Simple report consists of a single byte set to one
// followed by one bit for each of the 64 buttons defined
// in the report type.
static uint8_t report[PLOVER_HID_SIMPLE_REPORT_SIZE] = {1};
bool process_plover_hid(uint16_t keycode, keyrecord_t *record) {
if (keycode < PLV__MIN || keycode > PLV__MAX) {
return true;
}
keycode = keycode - PLV__MIN;
if (record->event.pressed) {
report[1 + keycode/8] |= (1 << (7 - (keycode % 8)));
} else {
report[1 + keycode/8] &= ~(1 << (7 - (keycode % 8)));
}
plover_hid_send(report);
return false;
}

View file

@ -0,0 +1,20 @@
/* Copyright 2021 The QMK Project
*
* 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
#include "quantum.h"
bool process_plover_hid(uint16_t keycode, keyrecord_t *record);

View file

@ -277,6 +277,9 @@ bool process_record_quantum(keyrecord_t *record) {
#if defined(BACKLIGHT_ENABLE) || defined(LED_MATRIX_ENABLE) #if defined(BACKLIGHT_ENABLE) || defined(LED_MATRIX_ENABLE)
process_backlight(keycode, record) && process_backlight(keycode, record) &&
#endif #endif
#ifdef PLOVER_HID_ENABLE
process_plover_hid(keycode, record) &&
#endif
#ifdef STENO_ENABLE #ifdef STENO_ENABLE
process_steno(keycode, record) && process_steno(keycode, record) &&
#endif #endif

View file

@ -81,6 +81,10 @@ extern layer_state_t layer_state;
# endif # endif
#endif #endif
#ifdef PLOVER_HID_ENABLE
# include "process_plover_hid.h"
#endif
#ifdef STENO_ENABLE #ifdef STENO_ENABLE
# include "process_steno.h" # include "process_steno.h"
#endif #endif

View file

@ -65,6 +65,8 @@ enum quantum_keycodes {
QK_STENO_COMB = 0x5A32, QK_STENO_COMB = 0x5A32,
QK_STENO_COMB_MAX = 0x5A3C, QK_STENO_COMB_MAX = 0x5A3C,
QK_STENO_MAX = 0x5A3F, QK_STENO_MAX = 0x5A3F,
QK_PLOVER_HID = 0x5A40,
QK_PLOVER_HID_MAX = 0x5A80,
// 0x5C00 - 0x5FFF are reserved, see below // 0x5C00 - 0x5FFF are reserved, see below
QK_MOD_TAP = 0x6000, QK_MOD_TAP = 0x6000,
QK_MOD_TAP_MAX = 0x7FFF, QK_MOD_TAP_MAX = 0x7FFF,

View file

@ -313,8 +313,8 @@ typedef struct {
#ifdef RAW_ENABLE #ifdef RAW_ENABLE
usb_driver_config_t raw_driver; usb_driver_config_t raw_driver;
#endif #endif
#ifdef PLOVER_ENABLE #ifdef PLOVER_HID_ENABLE
usb_driver_config_t plover_driver; usb_driver_config_t plover_hid_driver;
#endif #endif
#ifdef MIDI_ENABLE #ifdef MIDI_ENABLE
usb_driver_config_t midi_driver; usb_driver_config_t midi_driver;
@ -353,10 +353,10 @@ static usb_driver_configs_t drivers = {
.raw_driver = QMK_USB_DRIVER_CONFIG(RAW, 0, false), .raw_driver = QMK_USB_DRIVER_CONFIG(RAW, 0, false),
#endif #endif
#ifdef PLOVER_ENABLE #ifdef PLOVER_HID_ENABLE
# define PLOVER_IN_CAPACITY 4 # define PLOVER_HID_IN_CAPACITY 4
# define PLOVER_IN_MODE USB_EP_MODE_TYPE_INTR # define PLOVER_HID_IN_MODE USB_EP_MODE_TYPE_INTR
.plover_driver = QMK_USB_DRIVER_CONFIG(PLOVER, 0, false), .plover_hid_driver = QMK_USB_DRIVER_CONFIG(PLOVER_HID, 0, false),
#endif #endif
#ifdef MIDI_ENABLE #ifdef MIDI_ENABLE
@ -1096,6 +1096,12 @@ void console_task(void) {
#endif /* CONSOLE_ENABLE */ #endif /* CONSOLE_ENABLE */
#ifdef PLOVER_HID_ENABLE
void plover_hid_send(uint8_t data[PLOVER_HID_SIMPLE_REPORT_SIZE]) {
chnWrite(&drivers.plover_hid_driver.driver, data, PLOVER_HID_SIMPLE_REPORT_SIZE);
}
#endif
#ifdef RAW_ENABLE #ifdef RAW_ENABLE
void raw_hid_send(uint8_t *data, uint8_t length) { void raw_hid_send(uint8_t *data, uint8_t length) {
// TODO: implement variable size packet // TODO: implement variable size packet

View file

@ -86,6 +86,10 @@ extern keymap_config_t keymap_config;
# include "raw_hid.h" # include "raw_hid.h"
#endif #endif
#ifdef PLOVER_HID_ENABLE
# include "plover_hid.h"
#endif
#ifdef JOYSTICK_ENABLE #ifdef JOYSTICK_ENABLE
# include "joystick.h" # include "joystick.h"
#endif #endif
@ -209,6 +213,28 @@ static void raw_hid_task(void) {
} }
#endif #endif
#ifdef PLOVER_HID_ENABLE
void plover_hid_send(uint8_t data[PLOVER_HID_SIMPLE_REPORT_SIZE]) {
if (USB_DeviceState != DEVICE_STATE_Configured) {
return;
}
uint8_t ep = Endpoint_GetCurrentEndpoint();
Endpoint_SelectEndpoint(PLOVER_HID_IN_EPNUM);
// Check to see if the host is ready to accept another packet
if (Endpoint_IsINReady()) {
// Write data
Endpoint_Write_Stream_LE(data, PLOVER_HID_SIMPLE_REPORT_SIZE, NULL);
// Finalize The stream transfer to send the last packet
Endpoint_ClearIN();
}
Endpoint_SelectEndpoint(ep);
}
#endif
/******************************************************************************* /*******************************************************************************
* Console * Console
******************************************************************************/ ******************************************************************************/
@ -471,9 +497,9 @@ void EVENT_USB_Device_ConfigurationChanged(void) {
ConfigSuccess &= Endpoint_ConfigureEndpoint((RAW_OUT_EPNUM | ENDPOINT_DIR_OUT), EP_TYPE_INTERRUPT, RAW_EPSIZE, 1); ConfigSuccess &= Endpoint_ConfigureEndpoint((RAW_OUT_EPNUM | ENDPOINT_DIR_OUT), EP_TYPE_INTERRUPT, RAW_EPSIZE, 1);
#endif #endif
#ifdef PLOVER_ENABLE #ifdef PLOVER_HID_ENABLE
/* Setup raw HID endpoints */ /* Setup raw HID endpoints */
ConfigSuccess &= Endpoint_ConfigureEndpoint((PLOVER_IN_EPNUM | ENDPOINT_DIR_IN), EP_TYPE_INTERRUPT, PLOVER_EPSIZE, 1); ConfigSuccess &= Endpoint_ConfigureEndpoint((PLOVER_HID_IN_EPNUM | ENDPOINT_DIR_IN), EP_TYPE_INTERRUPT, PLOVER_HID_EPSIZE, 1);
#endif #endif
#ifdef CONSOLE_ENABLE #ifdef CONSOLE_ENABLE

View file

@ -322,7 +322,7 @@ const USB_Descriptor_HIDReport_Datatype_t PROGMEM RawReport[] = {
}; };
#endif #endif
#ifdef PLOVER_ENABLE #ifdef PLOVER_HID_ENABLE
const USB_Descriptor_HIDReport_Datatype_t PROGMEM PloverReport[] = { const USB_Descriptor_HIDReport_Datatype_t PROGMEM PloverReport[] = {
0x06, 0x50, 0xff, // UsagePage (65360) 0x06, 0x50, 0xff, // UsagePage (65360)
0x0a, 0x56, 0x4c, // Usage (19542) 0x0a, 0x56, 0x4c, // Usage (19542)
@ -577,7 +577,7 @@ const USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor = {
}, },
#endif #endif
#ifdef PLOVER_ENABLE #ifdef PLOVER_HID_ENABLE
/* /*
* Plover HID * Plover HID
*/ */
@ -586,7 +586,7 @@ const USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor = {
.Size = sizeof(USB_Descriptor_Interface_t), .Size = sizeof(USB_Descriptor_Interface_t),
.Type = DTYPE_Interface .Type = DTYPE_Interface
}, },
.InterfaceNumber = PLOVER_INTERFACE, .InterfaceNumber = PLOVER_HID_INTERFACE,
.AlternateSetting = 0x00, .AlternateSetting = 0x00,
.TotalEndpoints = 1, .TotalEndpoints = 1,
.Class = HID_CSCP_HIDClass, .Class = HID_CSCP_HIDClass,
@ -610,7 +610,7 @@ const USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor = {
.Size = sizeof(USB_Descriptor_Endpoint_t), .Size = sizeof(USB_Descriptor_Endpoint_t),
.Type = DTYPE_Endpoint .Type = DTYPE_Endpoint
}, },
.EndpointAddress = (ENDPOINT_DIR_IN | PLOVER_IN_EPNUM), .EndpointAddress = (ENDPOINT_DIR_IN | PLOVER_HID_IN_EPNUM),
.Attributes = (EP_TYPE_INTERRUPT | ENDPOINT_ATTR_NO_SYNC | ENDPOINT_USAGE_DATA), .Attributes = (EP_TYPE_INTERRUPT | ENDPOINT_ATTR_NO_SYNC | ENDPOINT_USAGE_DATA),
.EndpointSize = RAW_EPSIZE, .EndpointSize = RAW_EPSIZE,
.PollingIntervalMS = 0x01 .PollingIntervalMS = 0x01
@ -1211,8 +1211,8 @@ uint16_t get_usb_descriptor(const uint16_t wValue, const uint16_t wIndex, const
break; break;
#endif #endif
#ifdef PLOVER_ENABLE #ifdef PLOVER_HID_ENABLE
case PLOVER_INTERFACE: case PLOVER_HID_INTERFACE:
Address = &ConfigurationDescriptor.Plover_HID; Address = &ConfigurationDescriptor.Plover_HID;
Size = sizeof(USB_HID_Descriptor_HID_t); Size = sizeof(USB_HID_Descriptor_HID_t);
@ -1276,8 +1276,8 @@ uint16_t get_usb_descriptor(const uint16_t wValue, const uint16_t wIndex, const
break; break;
#endif #endif
#ifdef PLOVER_ENABLE #ifdef PLOVER_HID_ENABLE
case PLOVER_INTERFACE: case PLOVER_HID_INTERFACE:
Address = &PloverReport; Address = &PloverReport;
Size = sizeof(PloverReport); Size = sizeof(PloverReport);

View file

@ -75,7 +75,7 @@ typedef struct {
USB_Descriptor_Endpoint_t Raw_OUTEndpoint; USB_Descriptor_Endpoint_t Raw_OUTEndpoint;
#endif #endif
#ifdef PLOVER_ENABLE #ifdef PLOVER_HID_ENABLE
// Plover HID Interface // Plover HID Interface
USB_Descriptor_Interface_t Plover_Interface; USB_Descriptor_Interface_t Plover_Interface;
USB_HID_Descriptor_HID_t Plover_HID; USB_HID_Descriptor_HID_t Plover_HID;
@ -169,8 +169,8 @@ enum usb_interfaces {
RAW_INTERFACE, RAW_INTERFACE,
#endif #endif
#ifdef PLOVER_ENABLE #ifdef PLOVER_HID_ENABLE
PLOVER_INTERFACE, PLOVER_HID_INTERFACE,
#endif #endif
#if defined(MOUSE_ENABLE) && !defined(MOUSE_SHARED_EP) #if defined(MOUSE_ENABLE) && !defined(MOUSE_SHARED_EP)
@ -234,8 +234,8 @@ enum usb_endpoints {
# endif # endif
#endif #endif
#ifdef PLOVER_ENABLE #ifdef PLOVER_HID_ENABLE
PLOVER_IN_EPNUM = NEXT_EPNUM, PLOVER_HID_IN_EPNUM = NEXT_EPNUM,
#endif #endif
#ifdef SHARED_EP_ENABLE #ifdef SHARED_EP_ENABLE
@ -318,7 +318,7 @@ enum usb_endpoints {
#define SHARED_EPSIZE 32 #define SHARED_EPSIZE 32
#define MOUSE_EPSIZE 8 #define MOUSE_EPSIZE 8
#define RAW_EPSIZE 32 #define RAW_EPSIZE 32
#define PLOVER_EPSIZE 32 #define PLOVER_HID_EPSIZE 9
#define CONSOLE_EPSIZE 32 #define CONSOLE_EPSIZE 32
#define MIDI_STREAM_EPSIZE 64 #define MIDI_STREAM_EPSIZE 64
#define CDC_NOTIFICATION_EPSIZE 8 #define CDC_NOTIFICATION_EPSIZE 8