set SwpTime using API

Forums SA Series Discussions set SwpTime using API

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #158083
    Anonymous
    Inactive

    How to set SwpTime to capture for SA_IQ mode using SA44B C#.NET API?

    #158086
    AndrewAndrew
    Moderator

    You can change the length of the IQ capture waveform by simply changing how many IQ samples you request from the GetIQ functions. Since you know the sample rate of the device for the given acquisition, you can determine the length of the capture you need with the following equations.

    sampleRate = 486111.111 / decimation;
    timePerSample = 1.0 / sampleRate;
    desiredSamples = desiredCaptureTime / timePerSample;

    #158106
    Anonymous
    Inactive

    Hi Andrew,
    Thanks for your response.

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.