mirror of
https://gitlab.com/hyperglitch/jellyfish.git
synced 2025-11-12 22:06:08 +00:00
17 lines
302 B
Python
17 lines
302 B
Python
#!/usr/bin/env python
|
|
|
|
# SPDX-FileCopyrightText: 2025 Igor Brkic <igor@hyperglitch.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
VENDOR_ID = 0x1209
|
|
PRODUCT_ID = 0x4A46
|
|
|
|
IN_EP = 0x83 # EP3 IN
|
|
OUT_EP = 0x03 # EP3 OUT
|
|
|
|
FRAME_HEADER = b'\x4a\x00'
|
|
FRAME_SIZE = 12
|
|
PAYLOAD_SIZE = FRAME_SIZE - 2
|
|
|