00b8:fixme:wineusb:query_id Unhandled ID query type 0x5

Questions about Wine on Linux
Post Reply
pascal06
Level 1
Level 1
Posts: 9
Joined: Mon Dec 06, 2021 3:05 pm

00b8:fixme:wineusb:query_id Unhandled ID query type 0x5

Post by pascal06 »

Hello everybody,
I just installed a software called Renolink on a Wine profile. To work, it needs an USB cable called vLinker FS USB
When I try to launch Renolink from a terminal, it show some lines, but nothing happen then:

Code: Select all

$ WINEPREFIX="/home/pascal/.wine-led" wine Renolink.exe 
00b8:fixme:wineusb:query_id Unhandled ID query type 0x5.
00b8:fixme:wineusb:query_id Unhandled ID query type 0x5.
00b8:fixme:wineusb:query_id Unhandled ID query type 0x5.
00b8:fixme:wineusb:query_id Unhandled ID query type 0x5.
00b8:fixme:wineusb:query_id Unhandled ID query type 0x5.
00b8:fixme:wineusb:query_id Unhandled ID query type 0x5.
00b8:fixme:wineusb:query_id Unhandled ID query type 0x5.
00b8:fixme:wineusb:query_id Unhandled ID query type 0x5.
00b8:fixme:wineusb:query_id Unhandled ID query type 0x5.
0024:fixme:ntdll:NtQuerySystemInformation info_class SYSTEM_PERFORMANCE_INFORMATION
0024:fixme:ntdll:enum_firmware_info info_class SYSTEM_FIRMWARE_TABLE_INFORMATION provider 4649524d
0058:fixme:mountmgr:query_property Faking StorageDeviceProperty data
Failed to run module constructor due to (null) assembly:C:\windows\mono\mono-2.0\lib\mono\4.5\mscorlib.dll type:TypeInitializationException member:(null)
I guess that the cable isn't detected by Renolink.
Here some information on the cable:

Code: Select all

$ lsusb
Bus 001 Device 092: ID 0403:6015 Future Technology Devices International, Ltd Bridge(I2C/SPI/UART/FIFO)
and

Code: Select all

$ lsusb -t
/:  Bus 001.Port 001: Dev 001, Class=root_hub, Driver=xhci_hcd/16p, 480M
    |__ Port 001: Dev 092, If 0, Class=Vendor Specific Class, Driver=ftdi_sio, 12M
Could anybody help me ?
Thanks a lot in advance,
Pascal
desessarts
Level 4
Level 4
Posts: 196
Joined: Wed Oct 04, 2023 7:57 am

Re: 00b8:fixme:wineusb:query_id Unhandled ID query type 0x5

Post by desessarts »

you need to show what happens if you plug and then do

Code: Select all

sudo dmesg
see this link

https://civade.com/post/2025/01/09/Les- ... -sous-Wine
pascal06
Level 1
Level 1
Posts: 9
Joined: Mon Dec 06, 2021 3:05 pm

Re: 00b8:fixme:wineusb:query_id Unhandled ID query type 0x5

Post by pascal06 »

desessarts wrote: Wed Jun 11, 2025 1:28 am you need to show what happens if you plug and then do

Code: Select all

sudo dmesg
see this link
https://civade.com/post/2025/01/09/Les- ... -sous-Wine
Hello,
thanks a lot for your reply. I already seen this link. But in my case, I don't think that Renolink use a COM port.
Indeed, it appears that it needs (at least under Windows) an additionnal driver. It is no more no less than a FTDI D2XX direct driver:
https://renolink.store/telechargements/
https://ftdichip.com/drivers/d2xx-drivers/
So, since my first post yesterday, I followed the installation procedure indicated in this archive:
https://ftdichip.com/wp-content/uploads ... 1.4.33.tgz
So, I did (see README.pdf pages 8 & 9):
4.
cp libftd2xx.* /usr/local/lib
Copies the libraries to a central location.
5.
chmod 0755 /usr/local/lib/libftd2xx.so.FULL_VERSION_NUMBER
Allows non-root access to the shared object.
6.
ln -sf /usr/local/lib/libftd2xx.so.FULL_VERSION_NUMBER /usr/local/lib/libftd2xx.so
Creates a symbolic link to the FULL_VERSION_NUMBER version of the
shared object.
Then, I did (see page 9):
1) Remove the ftdi_sio module from the running kernel:
sudo lsmod | grep ftdi_sio
If “ftdi_sio” is listed unload it (and its helper module, usbserial):
sudo rmmod ftdi_sio
sudo rmmod usbserial
To reverse the operation the kernel modules can be reloaded using modprobe
instead of rmmod.
But I've got the same error than yesterday.
pascal06
Level 1
Level 1
Posts: 9
Joined: Mon Dec 06, 2021 3:05 pm

Re: 00b8:fixme:wineusb:query_id Unhandled ID query type 0x5

Post by pascal06 »

pascal06
Level 1
Level 1
Posts: 9
Joined: Mon Dec 06, 2021 3:05 pm

Re: 00b8:fixme:wineusb:query_id Unhandled ID query type 0x5

Post by pascal06 »

So,
I finally followed your advice (https://civade.com/post/2025/01/09/Les- ... -sous-Wine)
I set it to COM4 (various sources about Renolink pointed to use this port).
Now, I can launch one of the exe (IfPrep3.exe) that I must use to generate a license request: yesterday, it wasn't possible.
This simple GUI has 3 buttons: Generate renolink.txt, Change BR to 1000000, Change BR to 115200
First button generate a txt file that contains a key I must send to obtain a license; the two other button change the cable's baud rate.
Each of the three buttons throw me an "object reference not set to an instance of an object"
Renolink.exe doesn't launch yet
So I think that this is most complicated than I thought to make this program works under Wine :'(
desessarts
Level 4
Level 4
Posts: 196
Joined: Wed Oct 04, 2023 7:57 am

Re: 00b8:fixme:wineusb:query_id Unhandled ID query type 0x5

Post by desessarts »

in order to get more info, launch your .exe, not by doing

Code: Select all

WINEARCH=win32 WINEPREFIX=~/.wine_xxx wine my.exe
but something like

Code: Select all

WINEDEBUG=fixme-all,+loaddll WINEARCH=win32 WINEPREFIX=~/.wine_xxx wine my.exe
(I do not know if you use WINEARCH=win32 or WINEARCH=win64, you will adapt)

this may print some messages
Unloaded xxx.dll
the doc for WINEDEBUG is in the wiki

https://gitlab.winehq.org/wine/wine/-/w ... g-Channels
desessarts
Level 4
Level 4
Posts: 196
Joined: Wed Oct 04, 2023 7:57 am

Re: 00b8:fixme:wineusb:query_id Unhandled ID query type 0x5

Post by desessarts »

I did

Code: Select all

WINEARCH=win64 WINEPREFIX=~/.wine_reno wineboot -u
WINEARCH=win64 WINEPREFIX=~/.wine_reno wine renolink_setup212.exe
WINEARCH=win64 WINEPREFIX=~/.wine_reno winetricks -q dotnet45
INEARCH=win64 WINEPREFIX=~/.wine_reno wine .wine_reno/drive_c/'Program Files (x86)'/RenOLink/Renolink.exe
and no error, I have a menu

File Communication Misc Scan Configuration Extra Language

and nice icons
desessarts
Level 4
Level 4
Posts: 196
Joined: Wed Oct 04, 2023 7:57 am

Re: 00b8:fixme:wineusb:query_id Unhandled ID query type 0x5

Post by desessarts »

the other programs in the directory seem to launch

I do not have anything connected to test, of course

Code: Select all

ls .wine_reno/drive_c/Program\ Files\ \(x86\)/RenOLink/*.exe
'.wine_reno/drive_c/Program Files (x86)/RenOLink/IfPrep2.exe'  '.wine_reno/drive_c/Program Files (x86)/RenOLink/IfPrep.exe'     '.wine_reno/drive_c/Program Files (x86)/RenOLink/Renolink.exe'
'.wine_reno/drive_c/Program Files (x86)/RenOLink/IfPrep3.exe'  '.wine_reno/drive_c/Program Files (x86)/RenOLink/IfPrepMXP.exe'  '.wine_reno/drive_c/Program Files (x86)/RenOLink/unins000.exe'
desessarts
Level 4
Level 4
Posts: 196
Joined: Wed Oct 04, 2023 7:57 am

Re: 00b8:fixme:wineusb:query_id Unhandled ID query type 0x5

Post by desessarts »

if it works for you, could you add in the title
solved
Post Reply