Faulting module: phidget22.dll error

Comments & issues
Supporting Windows 8 or newer
Post Reply
bkuehner
Phidgetsian
Posts: 10
Joined: Mon May 01, 2023 10:35 pm
Contact:

Faulting module: phidget22.dll error

Post by bkuehner »

I have a C# application which infrequently will exit with no error except the log below (in the Event Viewer Application log). Is there anything I can do to get more information about what might be causing the fault?

Faulting application name: RoomControlServer.exe, version: 1.0.9106.744, time stamp: 0x666b0000
Faulting module name: phidget22.dll, version: 1.1.20.14, time stamp: 0x66e20aa4
Exception code: 0xc0000409
Fault offset: 0x00000000001727dc
Faulting process id: 0x0x130C
Faulting application start time: 0x0x1DB47A4C5E8AB75
Faulting application path: C:\Work\gitlab.newerroomcontrol\RoomControlServer\bin\Debug\net8.0-windows7.0\RoomControlServer.exe
Faulting module path: C:\Work\gitlab.newerroomcontrol\RoomControlServer\bin\Debug\net8.0-windows7.0\dll\x64\phidget22.dll
Report Id: f454be09-31dc-4d86-9cfa-0c456d4c2cd5
Faulting package full name:
Faulting package-relative application ID:
bkuehner
Phidgetsian
Posts: 10
Joined: Mon May 01, 2023 10:35 pm
Contact:

Re: Faulting module: phidget22.dll error

Post by bkuehner »

It looks like it might happen in the second SetOutputValue call after the sleep:
PhidgetManager.Instance.SetIoChannelState(channelName, true);
Thread.Sleep(delay);
PhidgetManager.Instance.SetIoChannelState(channelName, false);

SetIoChannelState looks up an output channel by name in a dictionary I maintain and then sets the state:

public void SetIoChannelState(string channelName, bool state)
{
Logger.Log(Logger.Level.TRACE, $"Setting {channelName} to {state}");
try
{
IoChannelMap[channelName].OutChannel.State = state;
}
catch (PhidgetException ex)
{
Logger.Log(Logger.Level.ERROR, $"Error setting channel {channelName}: {ex.Description}");
}
}

I do not see that exception, because the process seems to be exiting immediately.
This is an output that is on a 0/16/16 that is being controlled directly, not via a network server.
Last edited by bkuehner on Fri Dec 06, 2024 1:09 am, edited 1 time in total.
User avatar
Patrick
Lead Developer
Posts: 660
Joined: Mon Jun 20, 2005 8:46 am
Location: Calgary
Contact:

Re: Faulting module: phidget22.dll error

Post by Patrick »

Do you have library logging enabled? I wonder if it may be related to a reference counting issue around a detach. I would enable library logging and see if you are getting any messages, especially a detach/attach cycle, or even a channel close.

When you create the dictionary in the first place, are you creating and opening your own channels, or are you opening channels delivered by the Phidget Manager?

A crash in the native library is definitely a bug that I would like to track down.

-Patrick
bkuehner
Phidgetsian
Posts: 10
Joined: Mon May 01, 2023 10:35 pm
Contact:

Re: Faulting module: phidget22.dll error

Post by bkuehner »

I do not have library logging on, but I'll check into how to do that. Does it have any significant performance impact?

I only use the Phidgets Phidget Manager for remote devices (and I realize that my own class name PhidgetManager is kind of confusing now, but I created it back in the 2.1 days when I was always opening local boards).

These are channels on locally (USB) attached boards, and are opened on program startup, like this:
case PhidgetChannelDirection.Output:
OutChannel = new DigitalOutput();
OutChannel.DeviceSerialNumber = boardSerial;
OutChannel.Channel = channelNumber;
OutChannel.Attach += onOutputAttachHandler;

if (!isRemote)
{
Logger.Log(Logger.Level.TRACE, $"Opening Output {boardSerial}:{channelNumber}");
OutChannel.Open();
Logger.Log(Logger.Level.TRACE, "Opened");
}
else
{
Logger.Log(Logger.Level.TRACE, $"Output {boardSerial}:{channelNumber} is remote, not opening yet");
}

They are not closed or detached as long as the program is running.
The use case is controlling an escape room, with a single server application running everything via assorted local and remote Phidgets.

There is a particular access pattern that is in the location where the error occurs:
Set output 1 low
Set output 2 low
Set output 3 high
Thread.Sleep(100ms)
Set output 3 low

The sleep is because output 3 is triggering a solenoid, which needs a momentary pulse.
User avatar
Patrick
Lead Developer
Posts: 660
Joined: Mon Jun 20, 2005 8:46 am
Location: Calgary
Contact:

Re: Faulting module: phidget22.dll error

Post by Patrick »

Hi,

I wonder if you may be seeing a detach related to EMI or power issues when switching the Solenoid. I would log detach events, and maybe enable library logging to help track down any events close to the crash. Library logging shouldn't impact performance, especially at INFO or lower level. https://www.phidgets.com/docs/Phidget_Logging

There is a bug fix in 1.21 related to a crash during detach/close. I would upgrade your library and see if that helps.

-Patrick
bkuehner
Phidgetsian
Posts: 10
Joined: Mon May 01, 2023 10:35 pm
Contact:

Re: Faulting module: phidget22.dll error

Post by bkuehner »

Thanks for the suggestions. I updated to 1.22, turned on info-level logging, and I also changed the timing to space out the 4 maglock and 1 solenoid triggers that were happening very close together. I have filtering on the devices to reduce the spike when they turn off, but maybe 5 all at once is a bit much.
I'm not getting any issues in my tests, but I wasn't seeing problems in tests before, either.
I'll see what happens when the game runs later this week.
bkuehner
Phidgetsian
Posts: 10
Joined: Mon May 01, 2023 10:35 pm
Contact:

Re: Faulting module: phidget22.dll error

Post by bkuehner »

I updated to the 1.22 DLLs and we just got another crash, at exactly the same location. Interestingly, the Phidget log shows IR device errors, and there is no access to the IR device happening at that point.

Event viewer says:
16:13:12
Faulting application name: RoomControlServer.exe, version: 1.0.9114.6101, time stamp: 0x666b0000
Faulting module name: phidget22.DLL, version: 1.1.22.2, time stamp: 0x67575ca2
Exception code: 0xc0000409
Fault offset: 0x000000000017d99c
Faulting process id: 0x0x1BAC
Faulting application start time: 0x0x1DB4E6273E6294A
Faulting application path: C:\Work\gitlab.newerroomcontrol\RoomControlServer\bin\Debug\net8.0-windows7.0\RoomControlServer.exe
Faulting module path: C:\Work\gitlab.newerroomcontrol\RoomControlServer\bin\Debug\net8.0-windows7.0\runtimes\win-x64\native\phidget22.DLL
Report Id: fbe29a5b-d0ad-4b52-93f0-ef05b73e5d5d


Phidget log says:
****************************** Logging Enabled ******************************
* Phidget22 - Version 1.22 - Built Dec 9 2024 14:09:39 *
* Release 1.22.20241209 - Windows (64-bit) *
*******************************************************************************
2024-12-14T14:57:50.149 <Info> phidget22usb[AttachUSBDevice()] : Attaching HID Phidget | Path: \\?\hid#vid_06c2&pid_004d#6&40e42f7&0&0000#{4d1e55b2-f16f-11cf-88cb-001111000030} | PDO Name: \Device\00000067
2024-12-14T14:57:50.159 <Info> phidget22[deviceAttach()] : (Attach) 1055 (PhidgetIR) v101 S/N:563690
2024-12-14T14:57:50.159 <Info> phidget22usb[AttachUSBDevice()] : Attaching HID Phidget | Path: \\?\hid#vid_06c2&pid_0044#6&a2f7af8&0&0000#{4d1e55b2-f16f-11cf-88cb-001111000030} | PDO Name: \Device\00000087
2024-12-14T14:57:50.159 <Info> phidget22[deviceAttach()] : (Attach) 1012 (PhidgetInterfaceKit 0/16/16) v605 S/N:536867
2024-12-14T14:57:50.159 <Info> phidget22usb[AttachUSBDevice()] : Attaching HID Phidget | Path: \\?\hid#vid_06c2&pid_0044#6&1a00deab&0&0000#{4d1e55b2-f16f-11cf-88cb-001111000030} | PDO Name: \Device\0000007c
2024-12-14T14:57:50.159 <Info> phidget22[deviceAttach()] : (Attach) 1012 (PhidgetInterfaceKit 0/16/16) v605 S/N:536843
2024-12-14T14:57:50.159 <Info> phidget22usb[PhidgetUSBOpenHandle()] : Opened USB Device: 0x51c
2024-12-14T14:57:50.159 <Info> phidget22[PhidgetUSBReadThreadFunction()] : 1055 (PhidgetIR) v101 S/N:563690: USB read thread started: 0x000027a4
2024-12-14T14:57:50.458 <Info> phidget22net[PhidgetNet_start()] : Starting Networking
2024-12-14T14:57:50.473 <Info> phidget22net[ZeroconfStart()] : DNS_SD API version is 333.10.0
2024-12-14T14:57:50.536 <Info> phidget22netctl[runNetworkControlEntry()] : network control entry thread started - sbc-plants: 0x00003cf8
2024-12-14T14:57:50.536 <Info> phidget22netctl[runNetworkControlEntry()] : network control entry thread started - sbc-familytree: 0x000038bc
2024-12-14T14:57:50.536 <Info> phidget22netctl[runNetworkControlEntry()] : network control entry sbc-familytree not connected (failures=0)
2024-12-14T14:57:50.536 <Info> phidget22netctl[runNetworkControlEntry()] : network control entry thread started - sbc-birdcages: 0x00001f1c
2024-12-14T14:57:50.536 <Info> phidget22netctl[runNetworkControlEntry()] : network control entry sbc-birdcages not connected (failures=0)
2024-12-14T14:57:50.536 <Info> phidget22netctl[runNetworkControlEntry()] : network control entry sbc-plants not connected (failures=0)
2024-12-14T14:57:50.536 <Info> phidget22netctl[runNetworkControlEntry()] : network control entry thread started - sbc-tinyworld: 0x00003b8c
2024-12-14T14:57:50.536 <Info> phidget22netctl[runNetworkControlEntry()] : network control entry sbc-tinyworld not connected (failures=0)
2024-12-14T14:57:50.536 <Info> phidget22netctl[runNetworkControlEntry()] : network control entry thread started - snakehub1: 0x00001cc0
2024-12-14T14:57:50.536 <Info> phidget22netctl[runNetworkControlEntry()] : network control entry snakehub1 not connected (failures=0)
2024-12-14T14:57:50.536 <Info> phidget22netctl[runNetworkControlEntry()] : network control entry thread started - snakehub2: 0x00003fc8
2024-12-14T14:57:50.536 <Info> phidget22netctl[runNetworkControlEntry()] : network control entry snakehub2 not connected (failures=0)
2024-12-14T14:57:50.536 <Info> phidget22net[clientConnect()] : Starting client connection to '192.168.13.153:5661'
2024-12-14T14:57:50.536 <Info> phidget22net[clientConnect()] : Starting client connection to '192.168.13.150:5661'
2024-12-14T14:57:50.536 <Info> phidget22net[clientConnect()] : Starting client connection to '192.168.13.151:5661'
2024-12-14T14:57:50.536 <Info> phidget22net[clientConnect()] : Starting client connection to '192.168.13.152:5661'
2024-12-14T14:57:50.536 <Info> phidget22net[clientConnect()] : Starting client connection to '192.168.13.158:5661'
2024-12-14T14:57:50.536 <Info> phidget22net[clientConnect()] : Starting client connection to '192.168.13.159:5661'
2024-12-14T14:57:50.536 <Info> phidget22net[deviceServerListener()] : Discovered server 'sbc-tinyworld' [sbc-tinyworld.local.] (interface 0xe)
2024-12-14T14:57:50.536 <Info> phidget22netctl[PhidgetNet_discoveredServer()] : Discovered Server: sbc-tinyworld
2024-12-14T14:57:50.536 <ERROR> phidget22netctl[PhidgetNet_discoveredServer()] : non-MDNS server already exists 'sbc-tinyworld.local.'
2024-12-14T14:57:50.536 <ERROR> phidget22net[deviceServerListener()] : failed to add MDNS server 'sbc-tinyworld.local.': 0x0a - Object Exists
2024-12-14T14:57:50.536 <Info> phidget22net[startClientConnection()] : server handshake 'phid22device' 2.4
2024-12-14T14:57:50.536 <Info> phidget22net[startClientConnection()] : server handshake 'phid22device' 2.3
2024-12-14T14:57:50.536 <Info> phidget22net[startClientConnection()] : server handshake 'phid22device' 2.3
2024-12-14T14:57:50.536 <Info> phidget22net[startClientConnection()] : server handshake 'phid22device' 2.4
2024-12-14T14:57:50.536 <Info> phidget22net[startClientConnection()] : server handshake 'phid22device' 2.4
2024-12-14T14:57:50.536 <Info> phidget22net[startClientConnection()] : server handshake 'phid22device' 2.4
2024-12-14T14:57:50.536 <Info> phidget22net[deviceServerListener()] : Discovered server 'sbc-cauldron' [sbc-cauldron.local.] (interface 0xe)
2024-12-14T14:57:50.536 <Info> phidget22netctl[PhidgetNet_discoveredServer()] : Discovered Server: sbc-cauldron
2024-12-14T14:57:50.536 <Info> phidget22netctl[runNetworkControlEntry()] : network control entry thread started - sbc-cauldron: 0x000028dc
2024-12-14T14:57:50.536 <Info> phidget22netctl[runNetworkControlEntry()] : network control entry sbc-cauldron not connected (failures=0)
2024-12-14T14:57:50.536 <Info> phidget22net[startClientConnection()] : connected to server 'sbc-birdcages'
2024-12-14T14:57:50.536 <Info> phidget22net[startClientConnection()] : connected to server 'snakehub1'
2024-12-14T14:57:50.536 <Info> phidget22net[startClientConnection()] : connected to server 'sbc-tinyworld'
2024-12-14T14:57:50.536 <Info> phidget22net[startClientConnection()] : connected to server 'snakehub2'
2024-12-14T14:57:50.536 <Info> phidget22netctl[runNetworkControlEntry()] : network control entry snakehub1 connected to 192.168.13.158:5661
2024-12-14T14:57:50.536 <Info> phidget22net[startClientConnection()] : connected to server 'sbc-familytree'
2024-12-14T14:57:50.536 <Info> phidget22net[startClientConnection()] : connected to server 'sbc-plants'
2024-12-14T14:57:50.536 <Info> phidget22netctl[runNetworkControlEntry()] : network control entry sbc-birdcages connected to 192.168.13.150:5661
2024-12-14T14:57:50.536 <Info> phidget22netctl[runNetworkControlEntry()] : network control entry sbc-tinyworld connected to 192.168.13.153:5661
2024-12-14T14:57:50.536 <Info> phidget22netctl[runNetworkControlEntry()] : network control entry snakehub2 connected to 192.168.13.159:5661
2024-12-14T14:57:50.536 <Info> phidget22netctl[runNetworkControlEntry()] : network control entry sbc-familytree connected to 192.168.13.151:5661
2024-12-14T14:57:50.536 <Info> phidget22netctl[runNetworkControlEntry()] : network control entry sbc-plants connected to 192.168.13.152:5661
2024-12-14T14:57:50.536 <Info> phidget22net[handleDeviceClientRequest()] : server netconnclient://192.168.13.158:5661 starting DATAGRAM as requested
2024-12-14T14:57:50.549 <Info> phidget22[deviceAttach()] : (Attach) HUB5000 (6-Port Network VINT Hub Phidget) v205 S/N:664329 -> snakehub1
2024-12-14T14:57:50.552 <Info> phidget22net[handleDeviceClientRequest()] : server netconnclient://192.168.13.159:5661 starting DATAGRAM as requested
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) 1024 (PhidgetRFID Read-Write) v103 S/N:646103 -> sbc-tinyworld
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) HUB5000 (6-Port Network VINT Hub Phidget) v205 S/N:664334 -> snakehub2
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) 1024 (PhidgetRFID Read-Write) v103 S/N:645732 -> sbc-tinyworld
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) 1024 (PhidgetRFID Read-Write) v103 S/N:646501 -> sbc-tinyworld
2024-12-14T14:57:50.552 <Info> phidget22net[deviceServerListener()] : Discovered server 'sbc-birdcages' [sbc-birdcages.local.] (interface 0xe)
2024-12-14T14:57:50.552 <Info> phidget22netctl[PhidgetNet_discoveredServer()] : Discovered Server: sbc-birdcages
2024-12-14T14:57:50.552 <ERROR> phidget22netctl[PhidgetNet_discoveredServer()] : non-MDNS server already exists 'sbc-birdcages.local.'
2024-12-14T14:57:50.552 <ERROR> phidget22net[deviceServerListener()] : failed to add MDNS server 'sbc-birdcages.local.': 0x0a - Object Exists
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) 1024 (PhidgetRFID Read-Write) v103 S/N:646135 -> sbc-plants
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) 1024 (PhidgetRFID Read-Write) v103 S/N:646500 -> sbc-plants
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) 1024 (PhidgetRFID Read-Write) v103 S/N:646132 -> sbc-plants
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) 1024 (PhidgetRFID Read-Write) v103 S/N:644920 -> sbc-plants
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) HUB0004 (6-Port PhidgetSBC VINT Hub Phidget) v204 S/N:625568 -> sbc-plants
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) 1024 (PhidgetRFID Read-Write) v103 S/N:646469 -> sbc-familytree
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) 1024 (PhidgetRFID Read-Write) v103 S/N:646467 -> sbc-familytree
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) 1024 (PhidgetRFID Read-Write) v103 S/N:646464 -> sbc-familytree
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) 1024 (PhidgetRFID Read-Write) v103 S/N:645729 -> sbc-familytree
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) 1024 (PhidgetRFID Read-Write) v103 S/N:644913 -> sbc-familytree
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) 1024 (PhidgetRFID Read-Write) v103 S/N:646470 -> sbc-familytree
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) HUB0004 (6-Port PhidgetSBC VINT Hub Phidget) v204 S/N:625316 -> sbc-familytree
2024-12-14T14:57:50.552 <Info> phidget22net[handleDeviceClientRequest()] : server netconnclient://192.168.13.152:5661 starting DATAGRAM as requested
2024-12-14T14:57:50.552 <Info> phidget22net[handleDeviceClientRequest()] : server netconnclient://192.168.13.151:5661 starting DATAGRAM as requested
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) Dictionary (Dictionary) v100 S/N:2 Label:Phidget22 Control -> sbc-plants
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) Dictionary (Dictionary) v100 S/N:2 Label:Phidget22 Control -> snakehub2
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) Dictionary (Dictionary) v100 S/N:2 Label:Phidget22 Control -> snakehub1
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) Dictionary (Dictionary) v100 S/N:2 Label:Phidget22 Control -> sbc-familytree
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) HUB0004 (6-Port PhidgetSBC VINT Hub Phidget) v204 S/N:622950 -> sbc-tinyworld
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) 1024 (PhidgetRFID Read-Write) v103 S/N:646435 -> sbc-birdcages
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) 1024 (PhidgetRFID Read-Write) v103 S/N:646499 -> sbc-birdcages
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) 1024 (PhidgetRFID Read-Write) v103 S/N:646002 -> sbc-birdcages
2024-12-14T14:57:50.552 <Info> phidget22net[handleDeviceClientRequest()] : server netconnclient://192.168.13.153:5661 starting DATAGRAM as requested
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) Dictionary (Dictionary) v100 S/N:2 Label:Phidget22 Control -> sbc-tinyworld
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) 1024 (PhidgetRFID Read-Write) v103 S/N:646109 -> sbc-birdcages
2024-12-14T14:57:50.552 <Info> phidget22net[handleDeviceClientRequest()] : server netconnclient://192.168.13.150:5661 starting DATAGRAM as requested
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) 1024 (PhidgetRFID Read-Write) v103 S/N:646162 -> sbc-birdcages
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) 1024 (PhidgetRFID Read-Write) v103 S/N:644921 -> sbc-birdcages
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) HUB0004 (6-Port PhidgetSBC VINT Hub Phidget) v204 S/N:625325 -> sbc-birdcages
2024-12-14T14:57:50.552 <Info> phidget22[deviceAttach()] : (Attach) Dictionary (Dictionary) v100 S/N:2 Label:Phidget22 Control -> sbc-birdcages
2024-12-14T14:57:50.552 <Info> phidget22net[deviceServerListener()] : Discovered server 'sbc-plants' [sbc-plants.local.] (interface 0xe)
2024-12-14T14:57:50.552 <Info> phidget22netctl[PhidgetNet_discoveredServer()] : Discovered Server: sbc-plants
2024-12-14T14:57:50.552 <ERROR> phidget22netctl[PhidgetNet_discoveredServer()] : non-MDNS server already exists 'sbc-plants.local.'
2024-12-14T14:57:50.552 <ERROR> phidget22net[deviceServerListener()] : failed to add MDNS server 'sbc-plants.local.': 0x0a - Object Exists
2024-12-14T14:57:50.552 <Info> phidget22net[deviceServerListener()] : Discovered server 'sbc-familytree' [sbc-familytree.local.] (interface 0xe)
2024-12-14T14:57:50.552 <Info> phidget22netctl[PhidgetNet_discoveredServer()] : Discovered Server: sbc-familytree
2024-12-14T14:57:50.552 <ERROR> phidget22netctl[PhidgetNet_discoveredServer()] : non-MDNS server already exists 'sbc-familytree.local.'
2024-12-14T14:57:50.552 <ERROR> phidget22net[deviceServerListener()] : failed to add MDNS server 'sbc-familytree.local.': 0x0a - Object Exists
2024-12-14T14:57:50.552 <Info> phidget22netctl[runNetworkControlEntry()] : network control entry sbc-cauldron: connecting to sbc-cauldron.local. (192.168.13.157:5661)
2024-12-14T14:57:50.567 <Info> phidget22net[clientConnect()] : Starting client connection to '192.168.13.157:5661'
2024-12-14T14:57:50.567 <Info> phidget22usb[PhidgetUSBOpenHandle()] : Opened USB Device: 0x1b80
2024-12-14T14:57:50.567 <Info> phidget22[PhidgetUSBReadThreadFunction()] : 1012 (PhidgetInterfaceKit 0/16/16) v605 S/N:536867: USB read thread started: 0x00003f68
2024-12-14T14:57:50.567 <Info> phidget22net[startClientConnection()] : server handshake 'phid22device' 2.4
2024-12-14T14:57:50.567 <Info> phidget22net[deviceServerListener()] : Discovered server 'snakehub1' [snakehub1.local.] (interface 0xe)
2024-12-14T14:57:50.567 <Info> phidget22netctl[PhidgetNet_discoveredServer()] : Discovered Server: snakehub1
2024-12-14T14:57:50.567 <ERROR> phidget22netctl[PhidgetNet_discoveredServer()] : non-MDNS server already exists 'snakehub1.local.'
2024-12-14T14:57:50.567 <ERROR> phidget22net[deviceServerListener()] : failed to add MDNS server 'snakehub1.local.': 0x0a - Object Exists
2024-12-14T14:57:50.567 <Info> phidget22net[startClientConnection()] : connected to server 'sbc-cauldron'
2024-12-14T14:57:50.567 <Info> phidget22netctl[runNetworkControlEntry()] : network control entry sbc-cauldron connected to sbc-cauldron.local.:5661
2024-12-14T14:57:50.567 <Info> phidget22net[handleDeviceClientRequest()] : server netconnclient://192.168.13.157:5661 starting DATAGRAM as requested
2024-12-14T14:57:50.567 <Info> phidget22net[deviceServerListener()] : Discovered server 'snakehub2' [snakehub2.local.] (interface 0xe)
2024-12-14T14:57:50.567 <Info> phidget22netctl[PhidgetNet_discoveredServer()] : Discovered Server: snakehub2
2024-12-14T14:57:50.567 <ERROR> phidget22netctl[PhidgetNet_discoveredServer()] : non-MDNS server already exists 'snakehub2.local.'
2024-12-14T14:57:50.567 <ERROR> phidget22net[deviceServerListener()] : failed to add MDNS server 'snakehub2.local.': 0x0a - Object Exists
2024-12-14T14:57:50.567 <Info> phidget22[deviceAttach()] : (Attach) 1024 (PhidgetRFID Read-Write) v103 S/N:675063 -> sbc-cauldron
2024-12-14T14:57:50.567 <Info> phidget22[deviceAttach()] : (Attach) 1024 (PhidgetRFID Read-Write) v103 S/N:675037 -> sbc-cauldron
2024-12-14T14:57:50.567 <Info> phidget22[deviceAttach()] : (Attach) 1024 (PhidgetRFID Read-Write) v103 S/N:675029 -> sbc-cauldron
2024-12-14T14:57:50.567 <Info> phidget22[deviceAttach()] : (Attach) HUB0004 (6-Port PhidgetSBC VINT Hub Phidget) v204 S/N:623024 -> sbc-cauldron
2024-12-14T14:57:50.567 <Info> phidget22[deviceAttach()] : (Attach) Dictionary (Dictionary) v100 S/N:2 Label:Phidget22 Control -> sbc-cauldron
2024-12-14T14:57:50.599 <Info> phidget22usb[PhidgetUSBOpenHandle()] : Opened USB Device: 0x1f48
2024-12-14T14:57:50.599 <Info> phidget22[PhidgetUSBReadThreadFunction()] : 1012 (PhidgetInterfaceKit 0/16/16) v605 S/N:536843: USB read thread started: 0x00002c4c
2024-12-14T14:57:50.650 <Warn> phidget22[Phidget_open_internal()] : Open was called on an already opened Phidget handle.
2024-12-14T14:57:50.650 <Warn> phidget22[Phidget_open_internal()] : Open was called on an already opened Phidget handle.
2024-12-14T14:57:50.650 <Warn> phidget22[Phidget_open_internal()] : Open was called on an already opened Phidget handle.
2024-12-14T14:57:50.677 <Warn> phidget22[Phidget_open_internal()] : Open was called on an already opened Phidget handle.
2024-12-14T14:57:51.101 last message repeated 44 more times
2024-12-14T14:57:55.040 last message repeated 18 more times
2024-12-14T16:13:12.282 <ERROR> phidget22[HandleData()] : IR data has gotten out of sync!
2024-12-14T16:13:12.282 <ERROR> phidget22[HandleData()] : IR data has gotten out of sync!
2024-12-14T16:13:12.282 <ERROR> phidget22[HandleData()] : IR data has gotten out of sync!
2024-12-14T16:13:12.282 <ERROR> phidget22[HandleData()] : IR data has gotten out of sync!
bkuehner
Phidgetsian
Posts: 10
Joined: Mon May 01, 2023 10:35 pm
Contact:

Re: Faulting module: phidget22.dll error

Post by bkuehner »

It happened again, with very similar symptoms:
2024-12-14T21:27:19.547 <ERROR> phidget22[HandleData()] : IR data has gotten out of sync!
2024-12-14T21:27:19.547 <ERROR> phidget22[HandleData()] : IR data has gotten out of sync!
2024-12-14T21:27:19.547 <ERROR> phidget22[HandleData()] : IR data has gotten out of sync!
2024-12-14T21:27:19.547 <ERROR> phidget22[HandleData()] : IR data has gotten out of sync!

Event log:
Faulting application name: RoomControlServer.exe, version: 1.0.9114.6101, time stamp: 0x666b0000
Faulting module name: phidget22.DLL, version: 1.1.22.2, time stamp: 0x67575ca2
Exception code: 0xc0000409
Fault offset: 0x000000000017d99c
Faulting process id: 0x0x31F4
Faulting application start time: 0x0x1DB4E8D6C64822F
Faulting application path: C:\Work\gitlab.newerroomcontrol\RoomControlServer\bin\Debug\net8.0-windows7.0\RoomControlServer.exe
Faulting module path: C:\Work\gitlab.newerroomcontrol\RoomControlServer\bin\Debug\net8.0-windows7.0\runtimes\win-x64\native\phidget22.DLL
Report Id: 438ea6ca-3f8d-4fac-a19d-34cc80eeee15
Faulting package full name:
Faulting package-relative application ID:
User avatar
Patrick
Lead Developer
Posts: 660
Joined: Mon Jun 20, 2005 8:46 am
Location: Calgary
Contact:

Re: Faulting module: phidget22.dll error

Post by Patrick »

Hi,

I sent you an e-mail. Let me know if you don't see it.

-Patrick
bkuehner
Phidgetsian
Posts: 10
Joined: Mon May 01, 2023 10:35 pm
Contact:

Re: Faulting module: phidget22.dll error

Post by bkuehner »

Got it, thanks.
Post Reply