<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How do you check an IVI range attribute in LabWindows/CVI</title>
    <link>https://ni.lithium.com/t5/LabWindows-CVI/How-do-you-check-an-IVI-range-attribute/m-p/280398#M19086</link>
    <description>&lt;DIV&gt;I would like to query an IVI driver to check a range attribute, for example; I'd like to know the minimum frequency supported by the IVIRFSigGen driver.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Does anyone know how to do this?&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Thanks.&lt;/DIV&gt;</description>
    <pubDate>Fri, 21 Oct 2005 18:32:30 GMT</pubDate>
    <dc:creator>GoBlue</dc:creator>
    <dc:date>2005-10-21T18:32:30Z</dc:date>
    <item>
      <title>How do you check an IVI range attribute</title>
      <link>https://ni.lithium.com/t5/LabWindows-CVI/How-do-you-check-an-IVI-range-attribute/m-p/280398#M19086</link>
      <description>&lt;DIV&gt;I would like to query an IVI driver to check a range attribute, for example; I'd like to know the minimum frequency supported by the IVIRFSigGen driver.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Does anyone know how to do this?&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Thanks.&lt;/DIV&gt;</description>
      <pubDate>Fri, 21 Oct 2005 18:32:30 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabWindows-CVI/How-do-you-check-an-IVI-range-attribute/m-p/280398#M19086</guid>
      <dc:creator>GoBlue</dc:creator>
      <dc:date>2005-10-21T18:32:30Z</dc:date>
    </item>
    <item>
      <title>Re: How do you check an IVI range attribute</title>
      <link>https://ni.lithium.com/t5/LabWindows-CVI/How-do-you-check-an-IVI-range-attribute/m-p/281200#M19104</link>
      <description>&lt;P&gt;Hi GoBlue,&lt;/P&gt;
&lt;P&gt;The IVIRFSigGen class doesn't inherently have a minimum frequency.&amp;nbsp; When you associate an instrument specific IV driver with that class, the instrument specific IV driver contains the minimum and maximum values for that particular device.&amp;nbsp; You can use the RANGE_CHECK attribute to check that values are within range for your device.&amp;nbsp; I have attached a screenshot from the IVI Driver Help that explains the RANGE_CHECK attribute.&lt;/P&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 24 Oct 2005 21:56:27 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabWindows-CVI/How-do-you-check-an-IVI-range-attribute/m-p/281200#M19104</guid>
      <dc:creator>MichaelChaney</dc:creator>
      <dc:date>2005-10-24T21:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: How do you check an IVI range attribute</title>
      <link>https://ni.lithium.com/t5/LabWindows-CVI/How-do-you-check-an-IVI-range-attribute/m-p/281378#M19110</link>
      <description>&lt;DIV&gt;Thanks for your reply Michael.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;I was looking at that command, but I didn't have any luck figuring out how to use it.&amp;nbsp; The help says to leave the Capabilty Name either "" or VI_NULL, so I wasn't sure how to tell it to check for a given frequency.&amp;nbsp; &lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;I could use the ViStatus returned from the ConfigureRF command, but I was hoping there was a way to have it check before sending the command.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Thanks again.&lt;/DIV&gt;</description>
      <pubDate>Tue, 25 Oct 2005 12:57:37 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabWindows-CVI/How-do-you-check-an-IVI-range-attribute/m-p/281378#M19110</guid>
      <dc:creator>GoBlue</dc:creator>
      <dc:date>2005-10-25T12:57:37Z</dc:date>
    </item>
    <item>
      <title>Re: How do you check an IVI range attribute</title>
      <link>https://ni.lithium.com/t5/LabWindows-CVI/How-do-you-check-an-IVI-range-attribute/m-p/282095#M19128</link>
      <description>&lt;DIV&gt;Hi GoBlue,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Are you wanting to find the range of a particular device driver for your own knowledge, or are you wanting to programatically acquire this value.&amp;nbsp; If you are just wanting to know the range of an IVI specific driver, you can open the main .c file for the driver and select Tools &amp;gt;&amp;gt; Edit Driver Attributes, the click on Range Tables and select the range table for this driver.&amp;nbsp; This range table contains the lookup table for valid ranges at different settings.&amp;nbsp; This just parses throught the .c file for this information.&amp;nbsp; You can also search the .c file for IVIRangeTableEntry.&amp;nbsp; This contains the same information.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;If you want to programatically query the driver, you can use the Ivi_GetAttrMinMaxViInt32() function to return the min and max value of a parameter from the range table.&lt;/DIV&gt;</description>
      <pubDate>Wed, 26 Oct 2005 17:28:44 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabWindows-CVI/How-do-you-check-an-IVI-range-attribute/m-p/282095#M19128</guid>
      <dc:creator>MichaelChaney</dc:creator>
      <dc:date>2005-10-26T17:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: How do you check an IVI range attribute</title>
      <link>https://ni.lithium.com/t5/LabWindows-CVI/How-do-you-check-an-IVI-range-attribute/m-p/282348#M19139</link>
      <description>&lt;DIV&gt;Hi Michael,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;I'm looking to do it programmatically, and the Ivi_GetAttrMinMaxViInt32() function did the trick.&amp;nbsp; For some reason, the Max value didn't seem to work, but I'm concerned with the Min and that worked like a charm,&amp;nbsp;so I'll look at that later.&amp;nbsp; I thought I dug through all the Ivi_GetAttr functions, but I must have missed this one.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Thanks for the IVI 101!&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Mark&lt;/DIV&gt;</description>
      <pubDate>Thu, 27 Oct 2005 12:20:50 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabWindows-CVI/How-do-you-check-an-IVI-range-attribute/m-p/282348#M19139</guid>
      <dc:creator>GoBlue</dc:creator>
      <dc:date>2005-10-27T12:20:50Z</dc:date>
    </item>
  </channel>
</rss>

