1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 10:58:59 +00:00
trezor-firmware/core/tools/hid-bridge/README.md

22 lines
827 B
Markdown
Raw Normal View History

# hid-bridge
Creates a virtual hid device which can be controlled by a user driver via a UDP port.
## Installation
You need Python 3.5 or higher.
2019-08-08 13:38:40 +00:00
The uhid driver is required. If it is built as a module and not loaded, load it by `modprobe uhid`.
2019-08-08 13:38:40 +00:00
You must have read/write permission to the `/dev/uhid/` device as well as to the newly created `/dev/hidraw*` device. This may be accomplished by copying `50-hid-bridge.rules` into `/etc/udev/rules.d/`. You may need to reload the driver afterwards.
## Usage
Run [Trezor emulator](https://github.com/trezor/trezor-core/blob/master/docs/emulator.md) and `./hid-bridge`.
## Known issues
2019-08-08 13:38:40 +00:00
Does not work with Firefox. Firefox closes hid devices upon loss of focus.
2019-08-08 13:38:40 +00:00
Does not work with the emulator in debug mode since the emulator doesn't start the hid interface in debug mode.