NurApiDisablePhysicalAntenna Method

This function disables the physical antennas that are specified as comma separated string parameter.

Definition

Namespace: NurApiDotNet
Assembly: NordicID.NurApi.Net (in NordicID.NurApi.Net.dll) Version: 4.0.0
C#
public void DisablePhysicalAntenna(
	string commaSeparated
)

Parameters

commaSeparated  String
Comma separatede list of physical antenna names to disable. If antenna is specified without polarity, all polarities will be set. To disable all antennas, use parameter "ALL"

Field Value

The value is list of comma separated strings such as "Beam1.X, Beam2, Beam3.Y".

Example

Example usage.
C#
// Disable Beam1 both polarities and Beam 5 polarity X
hApi.DisablePhysicalAntenna("Beam1,Beam5.X");

See Also