Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
154 views

I have usb flash drive which connect to Iphone XR via adapter. I want to detect when device was connected to Iphone. I read this links and try to write something similar xamarin link swift link ...
soniko62's user avatar
4 votes
1 answer
652 views

If you run something like sudo evtest /dev/input/event7 where event7 corresponds to (say) a keyboard and you press a key, you get a report like: Event: time 1725511187.487035, type 4 (EV_MSC), code 4 ...
étale-cohomology's user avatar
1 vote
1 answer
368 views

There's a question with almost an exact name name. The answer states that for (general) Unicode characters his solution was OS-dependent. However, the HID Usage Tables 1.5 doc has a dedicated Usage ...
étale-cohomology's user avatar
0 votes
0 answers
494 views

In an STM32CubeIDE USB HID project for an STM32F103C8 board I can send data from the device to the host using the USBD_HID_SendReport() function, like so: USBD_HID_SendReport(&hUsbDeviceFS, (...
étale-cohomology's user avatar
0 votes
0 answers
80 views

I have been trying to get some code that I got from github to run but I keep getting the error cannot open camera by Index.I am using opencv.I am running raspbian os on a vm. my webcam shows up on ...
joshua thomas's user avatar
0 votes
1 answer
207 views

My setup I try to use USB FS Host on GD32F405 (=STM32) microcontroller. I use CMSIS and operate directly on registers. I have Android device, that is working as VCP (Virtual COM port) by default and ...
nv317's user avatar
  • 202
1 vote
0 answers
214 views

On my Raspberry Pi 4B board, I'm trying to load file from USB during my boot.scr script, but when I call USB start or USB reset command, I get following error: starting USB... Bus xhci_pci: ...
Thugmek's user avatar
  • 198
0 votes
0 answers
93 views

This is a different angle on the same question posed here. I've been trying to amalgamate advice from here and here, as well as various other places whose links I don't have handy. I have an embedded ...
Brian A. Henning's user avatar
0 votes
0 answers
71 views

On my Linux system I have 2 hiddev files (there could be more in the future): > ls /dev/usb hiddev0 hiddev1 lp2 And I have a bunch of USB devices: > lsusb Bus 001 Device 001: ID 1d6b:0002 ...
Shaggydog's user avatar
  • 3,838
0 votes
0 answers
86 views

I am trying to interface an android app with a windows PC. The android tablet will act as the slave and the PC has the host. The PC will run a c# windows service, does any know what type of C# is ...
Khaled Telfah's user avatar
0 votes
0 answers
27 views

I want to detect and be able to differentiate the type of devices that are connected to Windows. Is there any difference in the logs generated by Windows Event Monitor when an external devices is ...
Abdullah's user avatar
  • 573
1 vote
0 answers
107 views

I am trying to get the mouse raw data with pywinusb. import pywinusb.hid as hid def sample_handler(data): print("Received raw data") print(f"Data Type: {type(data)}, Data ...
Vid Kalisnik's user avatar
2 votes
0 answers
41 views

I'm trying to reverse engineer the screen on the Epomaker RT100 keyboard, specifically the image uploading component. I used Wireshark to track the packets sent over USB. I found that RGB 565 is being ...
AeroGlory's user avatar
1 vote
0 answers
441 views

I am creating a simple android app that connects to an arduino that has a weight sensor. On android 11 this works but I am testing on android 14 and it is either: Not prompting for the USB permission ...
pointbraker's user avatar
0 votes
1 answer
72 views

I am new to Arduino. I am trying to learn how to use receive data over USB, but it is not working. This is my code: struct arrayData{ char* array; int size; }; void setup() { // put your ...
person's user avatar
  • 11
0 votes
0 answers
21 views

Our design team works on company-provided Windows PCs to create new designs. We have reason to believe that one of our designers is leaking our original designs to competitors. To prevent this, we ...
mahyunk's user avatar
  • 11
1 vote
0 answers
170 views

Our C++ application periodically checks for the presence of a USB device as a licensing mechanism. However, on Win11, USB devices now default to "Allow the computer to turn off this device to ...
Jeff Morrow's user avatar
0 votes
0 answers
132 views

for some reasons I need USB drives to get mounted read-only from time to time. As I do have more than one USB port on my computer, I thought it would be a great idea to define one of them as a "...
000's user avatar
  • 41
1 vote
0 answers
505 views

I am trying to get my Android emulator to see the Wi-Fi dongle or my Ethernet dongle connected over USB to the Macbook Pro M1. I tried the following methods: Command: ./emulator -avd MyTestEmulator -...
HackX123's user avatar
  • 127
1 vote
0 answers
42 views

I'm working on a project to forward audio from AUX to USB. Requirements: 1 device (ie: phone) with OUTPUT LINE (AUX Jack 3.5 mm Female) 1 custom cable (Stereo AUX Jack 3.5 mm Male to 3 wires (ground, ...
Nicolas Metivier's user avatar
0 votes
0 answers
73 views

How do you put a processor's USB peripheral into test mode on an embedded Linux system? I have tried writing the setup sequence defined in the reference manual to registers directly using devmem. ...
User55412's user avatar
  • 950
1 vote
1 answer
554 views

I’m working on a project that involves a Raspberry Pi 5 running a Python-based GUI and an RP2040 (running MicroPython) connected to a set of I2C sensors and 32 servos controlled by two PCA9685 PWM ...
user25086481's user avatar
0 votes
0 answers
70 views

I am transferring raw uncompressed video from an image sensor to a C++ OpenCV application running on Linux. The signal chain is this: MIPI output Image sensor -> MIPI to USB 3.0 chip -> USB 3.0 ...
Rocketmagnet's user avatar
  • 5,950
0 votes
1 answer
41 views

I'm using the stm32f746g-discovery board with the Keil USB HID example. I can connect to the USB HID device with a UWP app using the HidDevice class. Is it also possible to use the UsbDevice class to ...
Tom Van Gaever's user avatar
1 vote
1 answer
1k views

I am trying to write a small C program to read and adjust the volume of a USB DAC (Apple USB-C to 3.5mm Dongle). I have been using this document as a reference, but have encountered an issue that I ...
bossman's user avatar
  • 13