1 2 3 4 5 6 7 8 9 10 11 12 13 14
| /** @fn int NurApiTuneAntenna(HANDLE hApi, int antenna, BOOL wideTune, BOOL bSaveResults, int *dBmResults)
* Executes an antenna tune.
*
* @param hApi Handle to valid NurApi object instance
* @param antenna Antenna to use. Value is 0...3.
* @param wideTune If set to TRUE the tuning is done in wider range opposing to FALSE which 'fast tune'
* @param bSaveResults If set to TRUE then the tuning results will be stored into the module's non-volatile memory.
* @param dBmResults Pointer to 6 integer values. The reflected power will be stored into these values in format dBm * 1000.
* This parameter may be NULL.
*
* @return Zero when succeeded, on error non-zero error code is returned.
*/
NUR_API
int NURAPICONV NurApiTuneAntenna(HANDLE hApi, int antenna, BOOL wideTune, BOOL bSaveResults, int *dBmResults); |
Partager