IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Controls if the host is allowed to send the DISCOVERY_CMD via broadcast. If you disable GevAllowDiscoveryCMDBroadcast, the device discovery is done by unicast only (see GevDiscoveryUnicastIPAddressToAdd).
Name |
GevAllowDiscoveryCMDBroadcast |
Category |
|
Interface |
Boolean |
Access |
Read/Write |
Unit |
- |
Visibility |
Guru |
Values |
True False |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Values description
•True: Broadcasting of the DISCOVERY_CMD is enabled.
•False: Broadcasting the DISCOVERY_CMD is disabled.
Code example
C++
// Determine the current status of GevAllowDiscoveryCMDBroadcast
bool value = nodeMapInterface->FindNode<peak::core::nodes::BooleanNode>("GevAllowDiscoveryCMDBroadcast")->Value();
// Set GevAllowDiscoveryCMDBroadcast to false
nodeMapInterface->FindNode<peak::core::nodes::BooleanNode>("GevAllowDiscoveryCMDBroadcast")->SetValue(false);
C#
// Determine the current status of GevAllowDiscoveryCMDBroadcast
bool value = nodeMapInterface.FindNode<peak.core.nodes.BooleanNode>("GevAllowDiscoveryCMDBroadcast").Value();
// Set GevAllowDiscoveryCMDBroadcast to false
nodeMapInterface.FindNode<peak.core.nodes.BooleanNode>("GevAllowDiscoveryCMDBroadcast").SetValue(false);
Python
# Determine the current status of GevAllowDiscoveryCMDBroadcast (bool)
value = nodeMapInterface.FindNode("GevAllowDiscoveryCMDBroadcast").Value()
# Set GevAllowDiscoveryCMDBroadcast to false (bool)
nodeMapInterface.FindNode("GevAllowDiscoveryCMDBroadcast").SetValue(False)