NurApiEnablePhysicalAntenna Method
This function enables the physical antennas that are specified as comma separated string parameter.
To enable all antennas, use parameter "ALL".
Namespace: NurApiDotNetAssembly: NordicID.NurApi.Net (in NordicID.NurApi.Net.dll) Version: 4.0.0
public void EnablePhysicalAntenna(
string commaSeparated,
bool disableOthers = false
)
Parameters
- commaSeparated String
- Comma separated list of physical antenna names to enable. If antenna is specified without polarity, all polarities will be set. To enable all antennas, use parameter "ALL"
- disableOthers Boolean (Optional)
- If set to true, antennas that are not specified in comma separated string will be disabled. If set to false, antennas that are already enabled will remain enabled.
Example usage.
// Enable only Beam1 both polarities and Beam 5 polarity X
hApi.EnablePhysicalAntenna("Beam1,Beam5.X", true);