Touseefelahi / GigeVision

Simple GigeVision implementation, GVSP, GVCP protocol implemented
97 stars 31 forks source link

No payload seems to be sent by camera #119

Closed blauertee closed 1 month ago

blauertee commented 1 month ago

Hello,

My camera doesnt seem to send any actual Image data on StartStreamAsync() I can see the metadata (LEADER and TRAILER) packages but there is no actual data in between them (see wireshark table provided in #118 ). Anyone has any Idea whats going south?

Thanks!!

Touseefelahi commented 1 month ago

Yes in the provided wireshark table, it doesn't have the actual image data. I can think of two possible issues: 1: Packetsize is supposed to be within the supported MTU size. Try setting a lower packet size of 1400. You can also enable Jumbo packet support from your network settings to use higher packet size. 2: Driver issue for the Ethernet Card.

blauertee commented 1 month ago

1: Packetsize is supposed to be within the supported MTU size. Try setting a lower packet size of 1400. You can also enable Jumbo packet support from your network settings to use higher packet size.

Great, solved it!