mirror of
https://gitea.osmocom.org/sim-card/simtrace2.git
synced 2026-03-16 21:28:33 +03:00
We now auto-discover the end-point addresses based on the interface descriptor. The user can also use the new "--interface" command line argument to set a non-zero intrerface. In combination, this should enable support for the remote-sim functionality on the second UART on OWHW.
8 lines
174 B
C
8 lines
174 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <libusb.h>
|
|
|
|
int get_usb_ep_addrs(libusb_device_handle *devh, unsigned int if_num,
|
|
uint8_t *out, uint8_t *in, uint8_t *irq);
|