Skip to main content
Filter by
Sorted by
Tagged with
2 votes
0 answers
56 views

My Android app needs to export Excel files to a USB drive when it's connected. I'm handling the USB connection and permission request. However, even after the user grants permission, my ...
Aswin .A.S's user avatar
0 votes
0 answers
36 views

I am developing an app in C# to send through Bulk Endpoint Transfer data to an android-powered device (a tablet in this case). My tablet is configured to use USB for "No data transfer", with ...
Hid's user avatar
  • 1
0 votes
0 answers
52 views

I am trying to retrieve device information such as IMEI, Serial Number, and other details from a device connected to my system via USB (COM6 port) in C#. The device communicates over a serial ...
Developer Account's user avatar
0 votes
0 answers
96 views

I write data to host using a usb hid. The following is the script for hid. #!/bin/sh usb_id=1 case "$1" in start) #1 mount configfs mount -t configfs none /sys/kernel/...
andy's user avatar
  • 117
0 votes
0 answers
56 views

I am trying to get my android tablet to get the feed from a razer kiyo usb camera connected via usb hub. This is a custom app, I am able to detect the camera and verify that it is a camera and which ...
Dean Bergey's user avatar
1 vote
0 answers
98 views

I'm part of a team working on a project where we have a small Android 12 device acting as an HID device for a host Android 12 device. The idea is that they press a button on the smaller device and ...
John Bothner's user avatar
4 votes
2 answers
252 views

I want to get a ID_MODEL and ID_VENDOR properties of a USB device in Linux. I know its /dev/bus/usb/xxx/yyy path. I can do it with this code that depends on systemd (cc -lsystemd test.c): #include <...
Rungela's user avatar
  • 43
0 votes
1 answer
251 views

I wanted to try out the ESP32-C6-Mini chips, so I built a breakout board for it. Below, you can see a picture of my setup. As you can see, I wanted to skip a USB-TTL-adapter and tried the USB CDC ...
Joh's user avatar
  • 337
0 votes
0 answers
124 views

I have modified the Advanced Android Kiosk Mode for my needs so it launches another app, and can also update it making the user choose an .apk file from a USB stick. To choose the .apk file, the kiosk ...
steve.b's user avatar
  • 85
0 votes
2 answers
125 views

I'm trying to list COM over USB ports in Powershell. So far, I found this command on the internet : PS C:\> Get-CimInstance Win32_SerialPort | Select Name, Description, DeviceID Name ...
SebMa's user avatar
  • 4,965
0 votes
0 answers
51 views

I need to make it possible to load data from the USB connector onto the HSPI bus of an ESP32S2. I've built the following code, which works well but is very slow: #ifndef ARDUINO_USB_MODE #error This ...
Julien's user avatar
  • 3,205
0 votes
1 answer
140 views

I have implemented a rotary encoder to control a Host PC's volume through as an HID device. Here's the report descriptor: 0x05, 0x0C, /* Usage Page (Consumer). */ 0x09, 0x01, /* Usage (Consumer ...
DarkFranX's user avatar
  • 561
0 votes
0 answers
58 views

I'm trying to write a program in assembly that cuts power/disconnects connection to a usb device of my choosing, I was told that USBDEVFS_DISCONNECT would do it, but when I execute the program, it ...
Virtual Wizard's user avatar
0 votes
0 answers
16 views

So I work for a company and we have just recently purchased an ROV. The controller the ROV company gave us upon purchase isnt fit for use and i want to use a different one, preferably a flight stick. ...
jack innes's user avatar
0 votes
1 answer
104 views

I am working on a kivy project to create some control panel for a ship (toggle lights etc). One of the screens I am also working on is a navigation using the kivy_garden.mapview. This is the screen ...
SHolzhauer's user avatar
0 votes
1 answer
90 views

i´m using podman with wsl. For podman to work the windows feature "VM-Plattform" needs to be active. If that´s the case podman works fine. But while "VM-Plattform" is active none ...
Handas's user avatar
  • 43
0 votes
1 answer
72 views

I'm having some problems changing the led and rumble on a DS4 controller, the project I'm working on is in Java, currently I can receive de inputData from all the buttons on the controller. But the ...
Gabriel Souza Dunkel's user avatar
1 vote
0 answers
116 views

I'm developing an Android application that manages USB devices using an external library. The MainActivity instantiates this library, which handles USB device events (connect/disconnect) and ...
Julen's user avatar
  • 11
-1 votes
1 answer
71 views

the command dmesg produce this output when i plug my device on a USB port > dmesg -wH [ +9.913990] usb 3-1.2: new high-speed USB device number 8 using xhci_hcd [ +0.091634] usb 3-1.2: New USB ...
Franck 38's user avatar
0 votes
1 answer
195 views

Im writing firmware for a USB 2.0 FS host that communicates with a LTE modem via bulk pipes, ppp mode. I am a bit uncertain about the use case for ZLP when the host is streaming data to the device. If ...
user1842354's user avatar
0 votes
0 answers
407 views

I have switched from Arduino to create and learn with custom STM32 boards. I followed a tutorial on how to make a simple STM32 breakout board. The design matches the tutorial and datasheet from STM32. ...
vanhims's user avatar
  • 38
0 votes
0 answers
92 views

So i have an android app which communicates with a PC using AOA mode. The problem is when i close my app and re-open it i can send data from android device to PC but my listening thread does not work ...
Egepa's user avatar
  • 9
1 vote
1 answer
63 views

I'm trying to reverse engineer the RGB controls for my SteelSeries Apex 3 TKL keyboard. My end goal is to control the RGB using Python, specifically the ctrl_transfer(bmRequestType, bmRequest, wValue, ...
user avatar
1 vote
0 answers
47 views

When I get PNPDeviceID for a certain COMXX, I am getting back this: USB\VID_067B&PID_2303\5&27699D6T&0&10 I understand the 4 digits after the VID and PID, but what is the last part &...
HexBlunder's user avatar
1 vote
1 answer
370 views

I'm debugging USB related issue due to upgrade to SDK34 and failure on Android 14. I don't have a physical device so I resort to emulator. I chmoded the usb device: such that the device is readable/...
Artyom's user avatar
  • 31.5k