Example #1
0
 /// <summary>
 /// Starts the sequence of hardware commands that sets the frequency the device is to be tuned to. In order to insure the sequence has been executed and that the hardware is properly tuned, WaitFrequencyAsync function must be called.
 /// </summary>
 /// <param name="frequency">Specified frequency.</param>
 /// <returns>Returns true if the command is issued.</returns>
 public bool TryFrequencyAsync(uint frequency)
 {
     CheckFrequency(frequency);
     return(G313Api.SetFreqAsync(GetHandle(), frequency));
 }