DeskHop 0.63 (Bugfixes, small features)

- add gaming mode (use left shift + right shift + G to toggle)
- rework HID queue, smoother operation of rotary dials (no packets lost)
- fix dragging across multiple screens on the same output
- improve read reliability for UI
- move default keyboard hotkey for output switching to LCtrl + Caps Lock
- change default X/Y speed to match 16:9 geometry
This commit is contained in:
Hrvoje Cavrak 2024-08-17 18:47:36 +02:00
parent 1fd0049039
commit a249aa50f1
25 changed files with 438 additions and 292 deletions

View File

@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.6)
set(VERSION_MAJOR 00)
set(VERSION_MINOR 147)
set(VERSION_MINOR 156)
set(PICO_SDK_FETCH_FROM_GIT off)
set(PICO_BOARD=pico)

View File

@ -42,7 +42,7 @@ The actual switch happens at the very moment when one arrow stops moving and the
## Keyboard
Acting as a USB Host and querying your keyboard periodically, it looks for a preconfigured hotkey in the hid report (usually Caps Lock for me). When found, it will forward all subsequent characters to the other output.
Acting as a USB Host and querying your keyboard periodically, it looks for a preconfigured hotkey in the hid report (usually Ctrl + Caps Lock for me). When found, it will forward all subsequent characters to the other output.
To have a visual indication which output you are using at any given moment, you can repurpose keyboard LEDs and have them provide the necessary feedback.
@ -101,6 +101,10 @@ This will make sure you won't accidentally leave your current screen. To turn of
You can lock both computers at once by using ```RIGHT CTRL + L```.
To make use of this feature, first set up the OS for each output in config (since the shortcuts are different).
### Gaming Mode
If you're gaming, there is a chance your game might not work properly with absolute mouse mode. To address that issue, a **gaming mode** is introduced, toggled by ```LEFT SHIFT + RIGHT SHIFT + G```. When in gaming mode, you are locked to the current screen and your mouse behaves like a standard relative mouse. This should also fix various virtual machine issues, currently unsupported operating systems etc.
### Screensaver
Supposedly built in to prevent computer from entering standby, but truth be told - it is just fun to watch. **Off by default**, will make your mouse pointer bounce around the screen like a Pong ball. When enabled, it activates after a period of inactivity defined in user config header and automatically switches off as soon as you send any output towards that screen.
@ -216,7 +220,8 @@ _Usage_
- ```Right CTRL + Right ALT``` - Toggle slower mouse mode
- ```Right CTRL + K``` - Lock/Unlock mouse desktop switching
- ```Right CTRL + L``` - Lock both outputs at once (set output OS before, see shortcuts below)
- ```Caps Lock``` - Switch between outputs
- ```Left Shift + Right Shift + G``` - Toggle gaming mode (lock to screen, act as standard mouse)
- ```Left CTRL + Caps Lock``` - Switch between outputs
### Switch cursor height calibration

Binary file not shown.

View File

@ -67,6 +67,12 @@ void switchlock_hotkey_handler(device_t *state, hid_keyboard_report_t *report) {
send_value(state->switch_lock, SWITCH_LOCK_MSG);
}
/* This key combo toggles gaming mode */
void toggle_relative_mode_handler(device_t *state, hid_keyboard_report_t *report) {
state->relative_mouse ^= 1;
send_value(state->relative_mouse, RELATIVE_MODE_MSG);
};
/* This key combo locks both outputs simultaneously */
void screenlock_hotkey_handler(device_t *state, hid_keyboard_report_t *report) {
hid_keyboard_report_t lock_report = {0}, release_keys = {0};
@ -199,9 +205,9 @@ void handle_wipe_config_msg(uart_packet_t *packet, device_t *state) {
load_config(state);
}
/* Process consumer control message, TODO: use queue instead of sending directly */
/* Process consumer control message */
void handle_consumer_control_msg(uart_packet_t *packet, device_t *state) {
tud_hid_n_report(0, REPORT_ID_CONSUMER, &packet->data[0], CONSUMER_CONTROL_LENGTH);
queue_cc_packet(packet->data, state);
}
/* Process request to store config to flash */
@ -219,6 +225,11 @@ void handle_proxy_msg(uart_packet_t *packet, device_t *state) {
queue_packet(&packet->data[1], (enum packet_type_e)packet->data[0], PACKET_DATA_LENGTH - 1);
}
/* Process request to reboot the board */
void handle_toggle_relative_msg(uart_packet_t *packet, device_t *state) {
state->relative_mouse = packet->data[0];
}
/* Process api communication messages */
void handle_api_msgs(uart_packet_t *packet, device_t *state) {
uint8_t value_idx = packet->data[0];
@ -239,15 +250,24 @@ void handle_api_msgs(uart_packet_t *packet, device_t *state) {
memcpy(ptr, &packet->data[1], map->len);
}
else if (packet->type == GET_VAL_MSG) {
uart_packet_t response = {.type=GET_VAL_MSG, .data={0}};
memcpy(response.data, ptr, map->len);
queue_try_add(&state->cfg_queue_out, &response);
uart_packet_t response = {.type=GET_VAL_MSG, .data={[0] = value_idx}};
memcpy(&response.data[1], ptr, map->len);
queue_cfg_packet(&response, state);
}
/* With each GET/SET message, we reset the configuration mode timeout */
reset_config_timer(state);
}
/* Handle the "read all" message by calling our "read one" handler for each type */
void handle_api_read_all_msg(uart_packet_t *packet, device_t *state) {
uart_packet_t result = {.type=GET_VAL_MSG};
for (int i = 0; i < get_field_map_length(); i++) {
result.data[0] = get_field_map_index(i)->idx;
handle_api_msgs(&result, state);
}
}
/* Process request packet and create a response */
void handle_request_byte_msg(uart_packet_t *packet, device_t *state) {

View File

@ -122,12 +122,14 @@ enum packet_type_e {
FLASH_LED_MSG = 9,
WIPE_CONFIG_MSG = 10,
HEARTBEAT_MSG = 12,
RELATIVE_MODE_MSG = 13,
CONSUMER_CONTROL_MSG = 14,
SYSTEM_CONTROL_MSG = 15,
SAVE_CONFIG_MSG = 18,
REBOOT_MSG = 19,
GET_VAL_MSG = 20,
SET_VAL_MSG = 21,
GET_ALL_VALS_MSG = 22,
PROXY_PACKET_MSG = 23,
REQUEST_BYTE_MSG = 24,
RESPONSE_BYTE_MSG = 25,
@ -166,7 +168,7 @@ typedef struct {
#define RAW_PACKET_LENGTH (START_LENGTH + PACKET_LENGTH)
#define UART_QUEUE_LENGTH 256
#define CFG_QUEUE_LENGTH 128
#define HID_QUEUE_LENGTH 128
#define KBD_QUEUE_LENGTH 128
#define MOUSE_QUEUE_LENGTH 512
@ -345,6 +347,25 @@ typedef struct TU_ATTR_PACKED {
uint8_t mode;
} mouse_report_t;
/* Used to work around OS issues with absolute coordinates on
multiple desktops (Windows/MacOS) */
typedef struct {
uint8_t tip_pressure;
uint8_t buttons; // Buttons
uint16_t x; // X coordinate (0-32767)
uint16_t y; // Y coordinate (0-32767)
} touch_report_t;
/* This stores various packets other than kbd/mouse to go out
(configuration, consumer control, system...) */
typedef struct {
uint8_t instance;
uint8_t report_id;
uint8_t type;
uint8_t len;
uint8_t data[RAW_PACKET_LENGTH];
} hid_generic_pkt_t;
typedef enum { IDLE, READING_PACKET, PROCESSING_PACKET } receiver_state_t;
typedef struct {
@ -370,7 +391,7 @@ typedef struct {
int16_t mouse_buttons; // Store and update the state of mouse buttons
config_t config; // Device configuration, loaded from flash or defaults used
queue_t cfg_queue_out; // Queue that stores outgoing vendor config messages
queue_t hid_queue_out; // Queue that stores outgoing hid messages
queue_t kbd_queue; // Queue that stores keyboard reports
queue_t mouse_queue; // Queue that stores mouse reports
queue_t uart_tx_queue; // Queue that stores outgoing packets
@ -427,6 +448,8 @@ void process_consumer_report(uint8_t *, int, uint8_t, hid_interface_t *);
void process_system_report(uint8_t *, int, uint8_t, hid_interface_t *);
void release_all_keys(device_t *);
void queue_kbd_report(hid_keyboard_report_t *, device_t *);
void queue_cc_packet(uint8_t *, device_t *);
void queue_system_packet(uint8_t *, device_t *);
void send_key(hid_keyboard_report_t *, device_t *);
void send_consumer_control(uint8_t *, device_t *);
bool key_in_report(uint8_t, const hid_keyboard_report_t *);
@ -474,7 +497,7 @@ void reboot(void);
/********* Tasks **********/
void process_uart_tx_task(device_t *);
void process_mouse_queue_task(device_t *);
void process_cfg_queue_task(device_t *);
void process_hid_queue_task(device_t *);
void process_kbd_queue_task(device_t *);
void usb_device_task(device_t *);
void kick_watchdog_task(device_t *);
@ -495,7 +518,10 @@ void reset_config_timer(device_t *);
extern const field_map_t api_field_map[];
const field_map_t* get_field_map_entry(uint32_t);
const field_map_t* get_field_map_index(uint32_t);
size_t get_field_map_length(void);
bool validate_packet(uart_packet_t *);
void queue_cfg_packet(uart_packet_t *, device_t *);
/********* Handlers **********/
void output_toggle_hotkey_handler(device_t *, hid_keyboard_report_t *);
@ -505,6 +531,7 @@ void fw_upgrade_hotkey_handler_B(device_t *, hid_keyboard_report_t *);
void mouse_zoom_hotkey_handler(device_t *, hid_keyboard_report_t *);
void all_keys_released_handler(device_t *);
void switchlock_hotkey_handler(device_t *, hid_keyboard_report_t *);
void toggle_relative_mode_handler(device_t *, hid_keyboard_report_t *);
void screenlock_hotkey_handler(device_t *, hid_keyboard_report_t *);
void output_config_hotkey_handler(device_t *, hid_keyboard_report_t *);
void wipe_config_hotkey_handler(device_t *, hid_keyboard_report_t *);
@ -530,6 +557,8 @@ void handle_response_byte_msg(uart_packet_t *, device_t *);
void handle_heartbeat_msg(uart_packet_t *, device_t *);
void handle_proxy_msg(uart_packet_t *, device_t *);
void handle_api_msgs(uart_packet_t *, device_t *);
void handle_api_read_all_msg(uart_packet_t *, device_t *);
void handle_toggle_relative_msg(uart_packet_t *, device_t *);
void switch_output(device_t *, uint8_t);

View File

@ -151,4 +151,48 @@ HID_COLLECTION_END \
HID_OUTPUT ( HID_DATA | HID_ARRAY | HID_ABSOLUTE ) ,\
HID_COLLECTION_END \
#define TUD_HID_REPORT_DESC_MOUSEHELP(...) \
HID_USAGE_PAGE ( HID_USAGE_PAGE_DESKTOP ) ,\
HID_USAGE ( HID_USAGE_DESKTOP_MOUSE ) ,\
HID_COLLECTION ( HID_COLLECTION_APPLICATION ) ,\
/* Report ID if any */\
__VA_ARGS__ \
HID_USAGE ( HID_USAGE_DESKTOP_POINTER ) ,\
HID_COLLECTION ( HID_COLLECTION_PHYSICAL ) ,\
HID_USAGE_PAGE ( HID_USAGE_PAGE_BUTTON ) ,\
HID_USAGE_MIN ( 1 ) ,\
HID_USAGE_MAX ( 5 ) ,\
HID_LOGICAL_MIN ( 0 ) ,\
HID_LOGICAL_MAX ( 1 ) ,\
/* Left, Right, Middle, Backward, Forward buttons */ \
HID_REPORT_COUNT( 5 ) ,\
HID_REPORT_SIZE ( 1 ) ,\
HID_INPUT ( HID_DATA | HID_VARIABLE | HID_ABSOLUTE ) ,\
/* 3 bit padding */ \
HID_REPORT_COUNT( 1 ) ,\
HID_REPORT_SIZE ( 3 ) ,\
HID_INPUT ( HID_CONSTANT ) ,\
HID_USAGE_PAGE ( HID_USAGE_PAGE_DESKTOP ) ,\
/* X, Y position [-127, 127] */ \
HID_USAGE ( HID_USAGE_DESKTOP_X ) ,\
HID_USAGE ( HID_USAGE_DESKTOP_Y ) ,\
HID_LOGICAL_MIN_N ( 0x8000, 2 ) ,\
HID_LOGICAL_MAX_N ( 0x7fff, 2 ) ,\
HID_REPORT_SIZE ( 16 ) ,\
HID_REPORT_COUNT( 2 ) ,\
HID_INPUT ( HID_DATA | HID_VARIABLE | HID_RELATIVE ) ,\
/* Vertical wheel scroll [-127, 127] */ \
HID_USAGE ( HID_USAGE_DESKTOP_WHEEL ) ,\
HID_LOGICAL_MIN ( 0x81 ) ,\
HID_LOGICAL_MAX ( 0x7f ) ,\
HID_REPORT_COUNT( 1 ) ,\
HID_REPORT_SIZE ( 8 ) ,\
HID_INPUT ( HID_DATA | HID_VARIABLE | HID_RELATIVE ) ,\
/* Mouse mode (0 = absolute, 1 = relative) */ \
HID_REPORT_COUNT( 1 ), \
HID_REPORT_SIZE ( 8 ), \
HID_INPUT ( HID_CONSTANT ), \
HID_COLLECTION_END , \
HID_COLLECTION_END \
#endif /* USB_DESCRIPTORS_H_ */

View File

@ -23,6 +23,10 @@
*
* defined as HID_KEY_<something>
*
* In addition, keyboard.c defines right ctrl as a modifier key required to
* activate this. So, the current shortcut is RIGHT CTRL + whatever is defined
* here.
*
* If you do not want to use a key for switching outputs, you may be tempted
* to select HID_KEY_NONE here; don't do that! That code appears in many HID
* messages and the result will be a non-functional keyboard. Instead, choose
@ -32,7 +36,7 @@
*
* */
#define HOTKEY_TOGGLE HID_KEY_F24
#define HOTKEY_TOGGLE HID_KEY_CAPS_LOCK
/**================================================== *
* ============== Mouse Speed Factor ============== *
@ -53,13 +57,13 @@
*
* */
/* Output A values */
/* Output A values, default is for the most common ~ 16:9 ratio screen */
#define MOUSE_SPEED_A_FACTOR_X 16
#define MOUSE_SPEED_A_FACTOR_Y 16
#define MOUSE_SPEED_A_FACTOR_Y 28
/* Output B values */
/* Output B values, default is for the most common ~ 16:9 ratio screen */
#define MOUSE_SPEED_B_FACTOR_X 16
#define MOUSE_SPEED_B_FACTOR_Y 16
#define MOUSE_SPEED_B_FACTOR_Y 28
#define JUMP_THRESHOLD 0

View File

@ -23,7 +23,7 @@
hotkey_combo_t hotkeys[] = {
/* Main keyboard switching hotkey */
{.modifier = 0,
{.modifier = KEYBOARD_MODIFIER_LEFTCTRL,
.keys = {HOTKEY_TOGGLE},
.key_count = 1,
.pass_to_os = false,
@ -51,6 +51,13 @@ hotkey_combo_t hotkeys[] = {
.acknowledge = true,
.action_handler = &screenlock_hotkey_handler},
/* Toggle gaming mode */
{.modifier = KEYBOARD_MODIFIER_LEFTSHIFT | KEYBOARD_MODIFIER_RIGHTSHIFT,
.keys = {HID_KEY_G},
.key_count = 1,
.acknowledge = true,
.action_handler = &toggle_relative_mode_handler},
/* Erase stored config */
{.modifier = KEYBOARD_MODIFIER_RIGHTSHIFT,
.keys = {HID_KEY_F12, HID_KEY_D},
@ -185,7 +192,7 @@ void send_key(hid_keyboard_report_t *report, device_t *state) {
/* Decide if consumer control reports go local or to the other board */
void send_consumer_control(uint8_t *raw_report, device_t *state) {
if (CURRENT_BOARD_IS_ACTIVE_OUTPUT) {
tud_hid_n_report(0, REPORT_ID_CONSUMER, raw_report, CONSUMER_CONTROL_LENGTH);
queue_cc_packet(raw_report, state);
state->last_activity[BOARD_ROLE] = time_us_64();
} else {
queue_packet((uint8_t *)raw_report, CONSUMER_CONTROL_MSG, CONSUMER_CONTROL_LENGTH);
@ -195,7 +202,7 @@ void send_consumer_control(uint8_t *raw_report, device_t *state) {
/* Decide if consumer control reports go local or to the other board */
void send_system_control(uint8_t *raw_report, device_t *state) {
if (CURRENT_BOARD_IS_ACTIVE_OUTPUT) {
tud_hid_n_report(0, REPORT_ID_SYSTEM, raw_report, SYSTEM_CONTROL_LENGTH);
queue_system_packet(raw_report, state);
state->last_activity[BOARD_ROLE] = time_us_64();
} else {
queue_packet((uint8_t *)raw_report, SYSTEM_CONTROL_MSG, SYSTEM_CONTROL_LENGTH);

View File

@ -35,7 +35,7 @@ int main(void) {
[1] = {.exec = &kick_watchdog_task, .frequency = _HZ(30)}, // | Verify core1 is still running and if so, reset watchdog timer
[2] = {.exec = &process_kbd_queue_task, .frequency = _HZ(2000)}, // | Check if there were any keypresses and send them
[3] = {.exec = &process_mouse_queue_task, .frequency = _HZ(2000)}, // | Check if there were any mouse movements and send them
[4] = {.exec = &process_cfg_queue_task, .frequency = _HZ(1000)}, // | Check if there are any packets to send over vendor link
[4] = {.exec = &process_hid_queue_task, .frequency = _HZ(1000)}, // | Check if there are any packets to send over vendor link
[5] = {.exec = &process_uart_tx_task, .frequency = _TOP()}, // | Check if there are any packets to send over UART
}; // `----- then go back and repeat forever
const int NUM_TASKS = ARRAY_SIZE(tasks_core0);

View File

@ -64,6 +64,10 @@ void update_mouse_position(device_t *state, mouse_values_t *values) {
output_t *current = &state->config.output[state->active_output];
uint8_t reduce_speed = 0;
/* If relative mouse mode is active, just pass mouse movements and update nothing */
if (state->relative_mouse)
return;
/* Check if we are configured to move slowly */
if (state->mouse_zoom)
reduce_speed = MOUSE_ZOOM_SCALING_FACTOR;
@ -141,12 +145,12 @@ void switch_desktop(device_t *state, output_t *output, int new_index, int direct
/* Fix for MACOS: Send relative mouse movement here, one or two pixels in the
direction of movement, BEFORE absolute report sets X to 0 */
mouse_report_t move_relative_one
= {.x = (direction == LEFT) ? SCREEN_MIDPOINT - 2 : SCREEN_MIDPOINT + 2, .mode = RELATIVE};
= {.x = (direction == LEFT) ? -5 : 5, .mode = RELATIVE};
switch (output->os) {
case MACOS:
/* Once doesn't seem reliable enough, do it twice */
output_mouse_report(&move_relative_one, state);
/* Once doesn't seem reliable enough, do it a few times */
for (int i = 0; i < 5; i++)
output_mouse_report(&move_relative_one, state);
break;
@ -184,8 +188,8 @@ void check_screen_switch(const mouse_values_t *values, device_t *state) {
int direction = jump_left ? LEFT : RIGHT;
/* No switching allowed if explicitly disabled or mouse button is held */
if (state->switch_lock || state->mouse_buttons)
/* No switching allowed if explicitly disabled */
if (state->switch_lock)
return;
/* No jump condition met == nothing to do, return */
@ -194,9 +198,13 @@ void check_screen_switch(const mouse_values_t *values, device_t *state) {
/* We want to jump in the direction of the other computer */
if (output->pos != direction) {
if (output->screen_index == 1) /* We are at the border -> switch outputs */
switch_screen(state, output, new_x, state->active_output, 1 - state->active_output, direction);
if (output->screen_index == 1) { /* We are at the border -> switch outputs */
/* No switching allowed if mouse button is held. Should only apply to the border! */
if (state->mouse_buttons)
return;
switch_screen(state, output, new_x, state->active_output, 1 - state->active_output, direction);
}
/* If here, this output has multiple desktops and we are not on the main one */
else
switch_desktop(state, output, output->screen_index - 1, direction);
@ -240,11 +248,9 @@ mouse_report_t create_mouse_report(device_t *state, mouse_values_t *values) {
/* Workaround for Windows multiple desktops */
if (state->relative_mouse) {
mouse_report.x = SCREEN_MIDPOINT + values->move_x;
mouse_report.y = SCREEN_MIDPOINT + values->move_y;
mouse_report.x = values->move_x;
mouse_report.y = values->move_y;
mouse_report.mode = RELATIVE;
mouse_report.buttons = values->buttons;
mouse_report.wheel = values->wheel;
}
return mouse_report;

View File

@ -67,3 +67,38 @@ const field_map_t* get_field_map_entry(uint32_t index) {
return NULL;
}
const field_map_t* get_field_map_index(uint32_t index) {
return &api_field_map[index];
}
size_t get_field_map_length(void) {
return ARRAY_SIZE(api_field_map);
}
void _queue_packet(uint8_t *payload, device_t *state, uint8_t type, uint8_t len, uint8_t id, uint8_t inst) {
hid_generic_pkt_t generic_packet = {
.instance = inst,
.report_id = id,
.type = type,
.len = len,
};
memcpy(generic_packet.data, payload, len);
queue_try_add(&state->hid_queue_out, &generic_packet);
}
void queue_cfg_packet(uart_packet_t *packet, device_t *state) {
uint8_t raw_packet[RAW_PACKET_LENGTH];
write_raw_packet(raw_packet, packet);
_queue_packet(raw_packet, state, 0, RAW_PACKET_LENGTH, REPORT_ID_VENDOR, ITF_NUM_HID_VENDOR);
}
void queue_cc_packet(uint8_t *payload, device_t *state) {
_queue_packet(payload, state, 1, CONSUMER_CONTROL_LENGTH, REPORT_ID_CONSUMER, ITF_NUM_HID);
}
void queue_system_packet(uint8_t *payload, device_t *state) {
_queue_packet(payload, state, 2, SYSTEM_CONTROL_LENGTH, REPORT_ID_SYSTEM, ITF_NUM_HID);
}

View File

@ -237,8 +237,8 @@ void initial_setup(device_t *state) {
queue_init(&state->kbd_queue, sizeof(hid_keyboard_report_t), KBD_QUEUE_LENGTH);
queue_init(&state->mouse_queue, sizeof(mouse_report_t), MOUSE_QUEUE_LENGTH);
/* Initialize vendor config protocol queue */
queue_init(&state->cfg_queue_out, sizeof(uart_packet_t), CFG_QUEUE_LENGTH);
/* Initialize generic HID packet queue */
queue_init(&state->hid_queue_out, sizeof(hid_generic_pkt_t), HID_QUEUE_LENGTH);
/* Initialize UART queue */
queue_init(&state->uart_tx_queue, sizeof(uart_packet_t), UART_QUEUE_LENGTH);

View File

@ -148,25 +148,23 @@ void heartbeat_output_task(device_t *state) {
queue_try_add(&global_state.uart_tx_queue, &packet);
}
/* Process outgoing config report messages. */
void process_cfg_queue_task(device_t *state) {
uint8_t raw_packet[RAW_PACKET_LENGTH] = {[0] = START1, [1] = START2, [11] = 0};
uart_packet_t packet;
if (!queue_try_peek(&state->cfg_queue_out, &packet))
/* Process other outgoing hid report messages. */
void process_hid_queue_task(device_t *state) {
hid_generic_pkt_t packet;
if (!queue_try_peek(&state->hid_queue_out, &packet))
return;
if (!tud_hid_n_ready(ITF_NUM_HID_VENDOR))
if (!tud_hid_n_ready(packet.instance))
return;
write_raw_packet(raw_packet, &packet);
/* ... try sending it to the host, if it's successful */
bool succeeded = tud_hid_n_report(ITF_NUM_HID_VENDOR, REPORT_ID_VENDOR, raw_packet, RAW_PACKET_LENGTH);
bool succeeded = tud_hid_n_report(packet.instance, packet.report_id, packet.data, packet.len);
/* ... then we can remove it from the queue. Race conditions shouldn't happen [tm] */
if (succeeded)
queue_try_remove(&state->cfg_queue_out, &packet);
queue_try_remove(&state->hid_queue_out, &packet);
}
/* Task that handles copying firmware from the other device to ours */

View File

@ -76,6 +76,7 @@ const uart_handler_t uart_handler[] = {
{.type = SWITCH_LOCK_MSG, .handler = handle_switch_lock_msg},
{.type = SYNC_BORDERS_MSG, .handler = handle_sync_borders_msg},
{.type = FLASH_LED_MSG, .handler = handle_flash_led_msg},
{.type = RELATIVE_MODE_MSG, .handler = handle_toggle_relative_msg},
{.type = CONSUMER_CONTROL_MSG, .handler = handle_consumer_control_msg},
/* Config */
@ -83,6 +84,7 @@ const uart_handler_t uart_handler[] = {
{.type = SAVE_CONFIG_MSG, .handler = handle_save_config_msg},
{.type = REBOOT_MSG, .handler = handle_reboot_msg},
{.type = GET_VAL_MSG, .handler = handle_api_msgs},
{.type = GET_ALL_VALS_MSG, .handler = handle_api_read_all_msg},
{.type = SET_VAL_MSG, .handler = handle_api_msgs},
/* Firmware */

View File

@ -58,7 +58,7 @@ uint8_t const desc_hid_report[] = {TUD_HID_REPORT_DESC_KEYBOARD(HID_REPORT_ID(RE
TUD_HID_REPORT_DESC_SYSTEM_CONTROL(HID_REPORT_ID(REPORT_ID_SYSTEM))
};
uint8_t const desc_hid_report_relmouse[] = {TUD_HID_REPORT_DESC_MOUSE(HID_REPORT_ID(REPORT_ID_RELMOUSE))};
uint8_t const desc_hid_report_relmouse[] = {TUD_HID_REPORT_DESC_MOUSEHELP(HID_REPORT_ID(REPORT_ID_RELMOUSE))};
uint8_t const desc_hid_report_vendor[] = {TUD_HID_REPORT_DESC_VENDOR_CTRL(HID_REPORT_ID(REPORT_ID_VENDOR))};
@ -82,15 +82,16 @@ uint8_t const *tud_hid_descriptor_report_cb(uint8_t instance) {
}
bool tud_mouse_report(uint8_t mode, uint8_t buttons, int16_t x, int16_t y, int8_t wheel) {
mouse_report_t report = {.buttons = buttons, .wheel = wheel, .x = x, .y = y, .mode = mode};
uint8_t instance = ITF_NUM_HID;
uint8_t report_id = REPORT_ID_MOUSE;
if (mode == ABSOLUTE) {
mouse_report_t report = {.buttons = buttons, .x = x, .y = y, .wheel = wheel};
return tud_hid_n_report(ITF_NUM_HID, REPORT_ID_MOUSE, &report, sizeof(report));
} else {
hid_mouse_report_t report
= {.buttons = buttons, .x = x - SCREEN_MIDPOINT, .y = y - SCREEN_MIDPOINT, .wheel = wheel, .pan = 0};
return tud_hid_n_report(ITF_NUM_HID_REL_M, REPORT_ID_RELMOUSE, &report, sizeof(report));
if (mode == RELATIVE) {
instance = ITF_NUM_HID_REL_M;
report_id = REPORT_ID_RELMOUSE;
}
return tud_hid_n_report(instance, report_id, &report, sizeof(report));
}

View File

@ -195,6 +195,7 @@ bool validate_packet(uart_packet_t *packet) {
const enum packet_type_e ALLOWED_PACKETS[] = {
FLASH_LED_MSG,
GET_VAL_MSG,
GET_ALL_VALS_MSG,
SET_VAL_MSG,
WIPE_CONFIG_MSG,
SAVE_CONFIG_MSG,

View File

@ -1,2 +1,2 @@
render:
python3 render.py
python3 -B render.py

View File

@ -1697,7 +1697,7 @@ var device;
const packetType = {
keyboardReportMsg: 1, mouseReportMsg: 2, outputSelectMsg: 3, firmwareUpgradeMsg: 4, switchLockMsg: 7,
syncBordersMsg: 8, flashLedMsg: 9, wipeConfigMsg: 10, readConfigMsg: 16, writeConfigMsg: 17, saveConfigMsg: 18,
rebootMsg: 19, getValMsg: 20, setValMsg: 21, proxyPacketMsg: 23
rebootMsg: 19, getValMsg: 20, setValMsg: 21, getValAllMsg: 22, proxyPacketMsg: 23
};
function calcChecksum(report) {
@ -1785,6 +1785,7 @@ async function connectHandler() {
device = devices[0];
device.open().then(async () => {
device.addEventListener('inputreport', handleInputReport);
document.querySelectorAll('.online').forEach(element => { element.style.opacity = 1.0; });
await readHandler();
});
@ -1816,8 +1817,12 @@ function setValue(element, value) {
}
function updateElement(element, event, dataType) {
var dataOffset = 3;
function updateElement(key, event) {
var dataOffset = 4;
var element = document.querySelector(`[data-key="${key}"]`);
if (!element)
return;
const methods = {
"uint32": event.data.getUint32,
@ -1829,6 +1834,8 @@ function updateElement(element, event, dataType) {
"int8": event.data.getInt8
};
dataType = element.getAttribute('data-type');
if (dataType in methods) {
var value = methods[dataType].call(event.data, dataOffset, true);
setValue(element, value);
@ -1842,24 +1849,14 @@ async function readHandler() {
if (!device || !device.opened)
await connectHandler();
const elements = document.querySelectorAll('.api');
await sendReport(packetType.getValAllMsg);
}
for (const element of elements) {
var key = element.getAttribute('data-key');
var dataType = element.getAttribute('data-type');
async function handleInputReport(event) {
var data = new Uint8Array(event.data.buffer);
var key = data[3];
await sendReport(packetType.getValMsg, [key]);
let incomingReport = await new Promise((resolve, reject) => {
const handleInputReport = (event) => {
updateElement(element, event, dataType);
device.removeEventListener('inputreport', handleInputReport);
resolve();
}
device.addEventListener('inputreport', handleInputReport);
});
}
updateElement(key, event);
}
async function rebootHandler() {

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@ var device;
const packetType = {
keyboardReportMsg: 1, mouseReportMsg: 2, outputSelectMsg: 3, firmwareUpgradeMsg: 4, switchLockMsg: 7,
syncBordersMsg: 8, flashLedMsg: 9, wipeConfigMsg: 10, readConfigMsg: 16, writeConfigMsg: 17, saveConfigMsg: 18,
rebootMsg: 19, getValMsg: 20, setValMsg: 21, proxyPacketMsg: 23
rebootMsg: 19, getValMsg: 20, setValMsg: 21, getValAllMsg: 22, proxyPacketMsg: 23
};
function calcChecksum(report) {
@ -92,6 +92,7 @@ async function connectHandler() {
device = devices[0];
device.open().then(async () => {
device.addEventListener('inputreport', handleInputReport);
document.querySelectorAll('.online').forEach(element => { element.style.opacity = 1.0; });
await readHandler();
});
@ -123,8 +124,12 @@ function setValue(element, value) {
}
function updateElement(element, event, dataType) {
var dataOffset = 3;
function updateElement(key, event) {
var dataOffset = 4;
var element = document.querySelector(`[data-key="${key}"]`);
if (!element)
return;
const methods = {
"uint32": event.data.getUint32,
@ -136,6 +141,8 @@ function updateElement(element, event, dataType) {
"int8": event.data.getInt8
};
dataType = element.getAttribute('data-type');
if (dataType in methods) {
var value = methods[dataType].call(event.data, dataOffset, true);
setValue(element, value);
@ -149,24 +156,14 @@ async function readHandler() {
if (!device || !device.opened)
await connectHandler();
const elements = document.querySelectorAll('.api');
await sendReport(packetType.getValAllMsg);
}
for (const element of elements) {
var key = element.getAttribute('data-key');
var dataType = element.getAttribute('data-type');
async function handleInputReport(event) {
var data = new Uint8Array(event.data.buffer);
var key = data[3];
await sendReport(packetType.getValMsg, [key]);
let incomingReport = await new Promise((resolve, reject) => {
const handleInputReport = (event) => {
updateElement(element, event, dataType);
device.removeEventListener('inputreport', handleInputReport);
resolve();
}
device.addEventListener('inputreport', handleInputReport);
});
}
updateElement(key, event);
}
async function rebootHandler() {