Compare commits

..

2 Commits

Author SHA1 Message Date
Marc Brooks 3252cecc31
Merge 6c84a315a3 into 317218a682 2025-10-05 02:05:22 +00:00
Marc Brooks 6c84a315a3
Update ui/src/components/popovers/PasteModal.tsx 2025-10-04 21:02:50 -05:00
2 changed files with 3 additions and 3 deletions

View File

@ -137,7 +137,7 @@ func NewKeyboardMacroTokenMessage(token uuid.UUID) *Message {
data, _ := token.MarshalBinary()
return &Message{
t: TypeKeyboardMacroState,
t: TypeKeyboardMacroTokenState,
d: data,
}
}

View File

@ -67,7 +67,7 @@ var keyboardReportDesc = []byte{
/* 1 bit of padding for the Power LED (ignored) */
0x95, 0x01, /* REPORT_COUNT (1) */
0x75, 0x03, /* REPORT_SIZE (1) */
0x75, 0x03, /* REPORT_SIZE (3) */
0x91, 0x03, /* OUTPUT (Cnst,Var,Abs) */
/* LED report 1 bit for Shift */
@ -80,7 +80,7 @@ var keyboardReportDesc = []byte{
/* 1 bit of padding for the rest of the byte */
0x95, 0x01, /* REPORT_COUNT (1) */
0x75, 0x03, /* REPORT_SIZE (1) */
0x75, 0x03, /* REPORT_SIZE (3) */
0x91, 0x03, /* OUTPUT (Cnst,Var,Abs) */
0xc0, /* END_COLLECTION */
}