Enumerate the logical antenna ports and report the antenna
detection status of each one.
| C# | Visual Basic | Visual C++ |
public byte[][] CmdAntennaDetect()
Public Function CmdAntennaDetect As Byte()()
public: array<array<unsigned char>^>^ CmdAntennaDetect()
an array of 2-element arrays of integers which are
(logical antenna port, detected) pairs. An example, where logical
ports 1 and 2 have detected antennas and 3 and 4 do not:
{{1, 1}, {2, 1}, {3, 0}, {4, 0}}