跳转到内容
STAGING SERVER
DEVELOPMENT SERVER

How to: Read Out Camera Transport Layer Parameters in C#

The following commands can be used to read out the individual values ​​of transport layer parameters in C:

数据包大小

res = PylonDeviceGetIntegerFeature( hDev, "GevSCPSPacketSize", &val);
CHECK( res );

包间隔

res = PylonDeviceGetIntegerFeature( hDev, "GevSCPD", &val);
CHECK( res );

当前设备吞吐量

res = PylonDeviceGetIntegerFeature( hDev, "GevSCDCT", &val);
CHECK( res );

检测信号超时

res = PylonDeviceGetIntegerFeature( hDev, "GevHeartbeatTimeout", &val);
CHECK( res );

Back to Knowledge Articles