C series module compatibility with 9103 Chassis

Hi All,
I have a 9004 cRIO controller and a 9103 cRIO Chassis.
I want to use a 9239 or 9229 and a 9225 module for developing my application.
Can anyone tell whether these modules are compatible with my existing Controller and Chassis.
Regards,
Cooldude 

Those modules are all compoatible with your hardware.  The more important question is if they are compatible with the version of LV and NI-RIO you are using.  I believe those modules all work with LV 8.5.1, NI-RIO 2.4.0, and any version later than that.

Similar Messages

  • CRIO 9025- FPGA - Not able to access c-series modules integrated with chassis

    Hi,
    I am using NI cRIO 9025 module. I have conncected the chassis with few cSERIES channels for voltage and current sensing.
    When I tried to configure, I am getting the following error
    Access denied: This target is running a version of LabVIEW Real-Time that is different than the Real-Time Module software on the host computer. You can verify the version and reinstall the Real-Time software using Measurement & Automation Explorer.
    I tried to use Add/Remove option from MAX. But I am not able to update the real time software on cRIO
    I am using Labview 12.0 on host computer and on target cRIO9025 - 11.0.1 version real time is installed.
    Please kindly help to update the software on target module.
    Thanks
    Ravi Kishore

    NMAYO,
    In your project view can you right click on the chassis in the cRIO and make sure that it is set for Scan Mode and not FPGA mode? Also, In the measurement and automation explorer you can check the cRIO and verify that it has Scan Engine Support installed on it. The tutorial below shows how to reformat a cRIO and install software on it, the later steps on software will allow you to check your cRIO.
    Reformatting a CompactRIO Real-Time Embedded Controller
    Ben Sisney
    FlexRIO V&V Engineer
    National Instruments

  • CIO:A9K-2T20GE-L compatibility with ASR9010 Chassis !

    Dear All
    I need to install the LC CIO:A9K-2T20GE-L in my new ASR9010 Chassis and wanted to know if there are any limitations for which Line Card Slots this can be installed into. Tried to look online but did not get any thing related to this yet.
    Regards
    Varma

    Hello Varma,
    therse is no such PID as CIO:A9K-2t20GE-L
    http://www.cisco.com/en/US/partner/prod/collateral/routers/ps9853/data_sheet_c78-501338.html
    For the A9K-2t20GE-L there is no limitation.
    wbr
    /vadim

  • Which c-series modules are compatible with Scan Mode?

    OK, so I just wasted 4 hours.
    I started a new Project with a need to use a 9220 analogue input card on a cRIO 9030, but immediately became stuck when I was unable to add the module using the right click Add New C-Series Module wizard to the 9030 chassis.
    My first (and only) assumption was that this was a new card and I needed the latest Device Drivers. So I installed those.
    When that failed I upgraded my LV2014 to LV2014 SP1, and also upgraded the Real-Time and FPGA modules too.
    4 hours later, when that failed, I realised that maybe this isn't a card compatible with Scan Mode so began searching ni.com for information. I've searched a whole raft of terms and I just cannot find information on which modules are supported by Scan Mode (which is presumably nearly all of them). I know it exists somewhere because I one referred to it when I had an RS485 module that was only compatible in FPGA mode, about four years ago.
    So:
    1. Is there an easy way to determine if a C-Series module is compatible with Scan Mode? I still don't know!
    2. Can we please have Scan Mode compatibility shown in the Add C-Seris Module Wizard. When attempting to add a module to a cRIO chassis, the wizard can hint to us that a particular module is not compatible. By not showing the 9220 in the drop down list I was led to believe the module was not a known device (and hence I attempted to upgrade my drivers). It would be better if the module was listed but disabled and not selectable, with some informational text to explain why. It's a fair assumption that a module will be compatible, so we don't expect it to not be listed when we attempt to add it. In fact, the possibility that some modules aren't compatible can evade your consciousness temporarily and make you do stupid things (like upgrade your installation!).
    3. Can we please have Scan Mode compatability information put on each module's description page. That would have made this whole process much quicker.
    Thoric (CLA, CLED, CTD and LabVIEW Champion)

    Well, I definitely agree that finding info about RSI module support is not as easy as it should be. Since I know where to look, I will refer you to this document, which I found linked from this page.
    That's the best document I know of on the topic.
    Cheers!
    TJ G

  • Can I create a task that includes 2 C series modules?

    I am trying to create a single task that includes 2 NI-9425 C series modules but when I wire the physical channel constant "Mod3/port0, Mod4/port0" into the DAQmx Create Virtual Channel.vi I receive error -200086 which states physical channel range syntax in the input string is invalid because multiple devices were listed in the string.  It is my understanding from LabView help that multidevice tasks are allowed.  Also according to this KB article http://digital.ni.com/public.nsf/allkb/CF85114C6025C84C862571C000722DDA multi-device tasks are supported for S Series devices, C Series, and DSA devices, and according to this KB article http://digital.ni.com/public.nsf/websearch/78E44565FD87E7D686257108007F94F8?OpenDocument I have formatted my physical channel constant correctly.
    Can someone please explain why I am getting this error when all indications are that this should be a simple thing to do?
    My C series modules are in slots 3 and 4 in a cDAQ-9188 chassis, I am currently running LabView 8.5.1, with Windows XP
    Thank you,
    Eric
    Solved!
    Go to Solution.

    Hi Eric,
    I'm afraid that you can't configure hardware timing with the NI 9425 in CompactDAQ. The NI 9425 data sheet explains: "The NI 9425 is a static digital module, so you can use it to perform software-timed or static operations only when installed in an NI CompactDAQ chassis."
    For AI, AO, and counters, daisy chaining multiple calls to DAQmx Create Channel is equivalent to specifying a list of physical channels, but for DIO it's different. A single DIO virtual channel can contain multiple physical channels (lines). It would be completely reasonable to assume that specifying a list of lines with "one channel for all lines" would cause DAQmx to put all of the lines in a single virtual channel, but due to how it's implemented in the DAQmx framework, this is not possible when the lines are on multiple devices. It would also be reasonable to assume that if DAQmx couldn't put all of the lines in a single virtual channel, then it would create one virtual channel per device, but that's also not how it's implemented--it returns the error that you received.
    Instead, here are two approaches to putting all 64 lines in one task. Either one should work.
    Approach A: Create a single task, containing two virtual channels (MyChan0 and MyChan1). MyChan0 contains cDAQ1Mod3/port0/line0:31 and MyChan1 contains cDAQ1Mod4/port0/line0:31. The Digital 2D Bool NChan 1Samp read VI returns a 2x32 array of Booleans. To flatten this into a 1D 64-element array, you need to use Reshape Array or some other method.
    The DAQmx Task >> Channels property is there to show that there are two virtual channels named MyChan0 and MyChan1. Also, I used a for-loop to show that you don't have to hardcode multiple calls to DAQmx Create Channel. The "one channel for all lines" constant is redundant because that is the default.
    Approach B: Create a single task, containing 64 virtual channels (MyChan0 through MyChan63). This uses the "one channel for each line" constant, which is not the default. MyChan0 contains cDAQ1Mod3/port0/line0, MyChan1 contains cDAQ1Mod3/port0/line1, etc. The Digital 1D Bool NChan 1Samp read VI returns a 1D 64-element array of Booleans. If you used the Digital 2D Bool NChan 1Samp VI instead, you would get a 64x1 array because there are 64 virtual channels containing 1 line each.
    Brad
    Brad Keryan
    NI R&D

  • Change a c-series module

    I have created a labview project and am using a RT Controller cRIO-9024 with cRIO-9118 Chassis.  I assigned the NI9474 to 5 of the slots and the NI9425 to the remaining 3 slots.  I now need to change the NI9474 to a NI9478.  When I try to add a new C-Series module nothing happens?  I have even tried removing the NI9474 from the project and I still can't add a new C-Series module.  Can someone tell me what I am doing wrong?  Thanks
    Solved!
    Go to Solution.

    Do you only have 1 of each module in your chassis? If so, why have you added the modules to multiple slots? I don't think it will let you add a module if all 8 slots have had modules allocated to them - you will probably need to remove the NI9474 and then add the NI9478. If you rename the module/signals, it shouldn't affect your FPGA code.
    Certified LabVIEW Architect, Certified TestStand Developer
    NI Days (and A&DF): 2010, 2011, 2013, 2014
    NI Week: 2012, 2014
    Knowledgeable in all things Giant Tetris and WebSockets

  • A much more efficient way to add C Series modules manually

    Scenario
    Suppose that we want to start coding my Real-Time application, but the hardware hasn't arrived yet.
    We can't Discover the chassis + modules, so we need to add modules manually.
    Current editor
    To add N modules, we need to launch this dialog N times:
    Right-click on Chassis in the Project Explorer
    Hover over "New"
    Click "C Series Modules…"
    Click "New target or device"
    Click "C Series Module"
    Click "OK"
    Wait for LabVIEW to fetch module list (wait ~1 second)
    Select Type (2 clicks)
    Select Location (2 clicks)
    Click "OK"
    Go to #1 to add a new module
    How tedious!
    Proposed Editor
    Wouldn't it be nice if we could set up all the modules in 1 dialog?
    Features
    Table auto-fills itself with modules already in the project
    Number of rows is determined by the chassis model. No need to select Location
    Ability to leave rows/slots empty
    Editable Name field (with default name) appears upon selecting Type
    Description appears upon selecting Type
    Feel the difference
    Adding N modules (using default names) requires...
    Current dialog: 10N clicks, N hovers, waiting N seconds
    Proposed dialog*: (6+2N) clicks, 1 hover, waiting 1 second
    So, adding 8 modules requires...
    Current dialog: 80 clicks, 8 hovers, waiting 8 seconds
    Proposed dialog*: 22 clicks, 1 hover, waiting 1 second
    *Assuming that steps 1-7 and 10 need to be performed once
     

    Oh, and if this is implemented, please make sure that users can comfortably fit all text on their screen!

  • HELP printer compatability with computor.

    Help...Have hp psc 1310  hp officejet 4200 series......Got a new gateway which is Vista and my old one was XP......my printer will print, but can not scan and tried to program the cd in again and computor would not accept it.  Will I need to get a new printer that is compatable with Vista?   Any thing to update of just have to get new?
    thanks enhelder
    Message Edited by enhelder on 07-07-2009 10:51 AM

    Hello Highcountryhike,
              Thank you for posting your request.  You should have no issues updating to 10.10 Yosemite.  Below are a couple links that should help.
    If you run the Software Updates from the Apple Menu, to check for updates.  Some have had issues not seeing updates, so simply click on "Store" from the top menu, and then click on Reload Page".  Select to install HP Updates to ensure you have the latest drivers.
    In some instances, the printer can be updated in the printer queue to resolve other issues, so check to make sure that the printer is listed with the HP Printer Series driver and not just AirPrint.  System Prefernces/Printers & Scanners/ select your printer on the left and check on the right side under "Location:" that Kind: is the printer series.  You can also click the "-" symbol to remove and then re-add the printer queue again, choosing the HP Printer series name to install the drivers.
    Installing the Full Feature HP Printer Driver in OS X v10.10 Yosemite
    Mac OS 10.10 Yosemite and HP Printer Support
    Please post back with any further issues/questions.
    Thanks,
    Double-U-Dee
    Don't forget to give Kudos where Kudos is Due - OR - if a Response Resolved your Issue, Click the "Accept as Solution"
    I am an HP employee, but my posts and replies are my own and do not reflect the opinion of HP.

  • Why do I keep getting error -65581 when trying to use a cRIO 9024 and c series modules

    I am simply trying to send out a digital high on DIO0 of a 9401 c series module and I get the following error every time.  
    Error -65581 occurred at Shared Variable in Send True Value Out.vi
    Possible reason(s):
    CompactRIO:  (Hex 0xFFFEFFD3) The FPGA personality currently running on the CompactRIO chassis does not support the RIO Scan Interface in this slot.
    This error or warning occurred while writing the following Shared Variable:
    \\NRL-CMG-cRIO\NI 9401-1\DIO0
    \\170.126.209.52\NI 9401-1\DIO0
    Any help would be greatly appreciated.
    Nate 
    Solved!
    Go to Solution.

    NMAYO,
    In your project view can you right click on the chassis in the cRIO and make sure that it is set for Scan Mode and not FPGA mode? Also, In the measurement and automation explorer you can check the cRIO and verify that it has Scan Engine Support installed on it. The tutorial below shows how to reformat a cRIO and install software on it, the later steps on software will allow you to check your cRIO.
    Reformatting a CompactRIO Real-Time Embedded Controller
    Ben Sisney
    FlexRIO V&V Engineer
    National Instruments

  • Hp pavalion g6 compatable with windows 8

    is my pavalion g6 series compatable with windows 8 its a 64bit system

    Hi,
    Microsoft has a tool which is similar to Windows 7 Advisor for Windows 8 called Windows 8 Upgrade Assisstant . Please download the Assisstant and run on your machine:
       http://windows.microsoft.com/en-US/windows-8/upgra​de-to-windows-8     
    Please also read this:
       http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&​lc=en&dlc=en&docname=c03451712
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Subject: FlexConnect compatibility with Access Point

    Subject: FlexConnect compatibility with Access Point
    Summary: Hi,
    We have today one Cisco 5508 and those access point on remote sites
    o CISCO AIR-LAP-1131AG-E-K9
    o CISCO AIR-LAP-1231G-E-K9
    o CISCO AIR-LAP-1142N-E-K9
    We plan to use redundancy on the controller and implement Flexconnect on the remote site. What we need to know is if I can implement Flexconnect on all actual access point - I think it is possible on 1142N + 1131G but do not know on 1231AG - is it correct or I'm wrong
    We plan to install the latest SW version for 5508 controller.
    Thank you
    Jean

    Here is what is supported
    Note All features discussed in this chapter apply to indoor (1040, 1140, 1250, 1260, 3500) and outdoor mesh access points (1500 series) unless noted otherwise. Mesh access point or MAP is hereafter used to refer to both indoor and outdoor mesh access points.
    Link to the guide
    http://www.cisco.com/en/US/products/ps11635/products_tech_note09186a0080b7f141.shtml
    Sent from Cisco Technical Support iPhone App

  • CompactRIO, CVI, and C series modules

    Being used to LabVIEW, not sure how to interface to the C-series modules on my cRIO using CVI.  The project I'm on needs to use CVI, and I have no idea how to interface to my cards -- e.g. writing to my DIO card or reading from an AI channel, etc.  
    In LV, it was easy and each I/O channel was simply a variable I could drop over to my block diagram and either read to write from/to.  Any pointers in the right direction for this?  I have the CVI real-time module and I know C, but never messed with CVI much..  I've searched and searched, but maybe I'm not searching right or something :/
    How can I read from my NI-9221 card on, say, channel 0 and get a double back representing the voltage that's on that line??  That's the kind of stuff I'm looking for... in CVI?
    Thanks.

    Hi there,
    LabWindows/CVi actually cannot be used to program cRIO.  CVI uses Pharlap, while cRIO uses VxWorks.  See CVI + RT FAQ and here's another more in-depth document regarding CVI in Real-Time.
    Best,
    Ryan C.
    Applications Engineer
    National Instruments

  • Is it possible to enable to VSS with 6500 chassis when only one chassis have the WISM ?

    is it possible to enable to VSS with 6500 chassis when only one chassis have the WISM ?

    thank you very much for the reply, that mean both the chassis no need to have the same modules installed on both the chassis . 

  • C-Series Module NI 9871, 4-Port, RS485/422 Serial Interface

    I have a question regarding the C-Series Module NI 9871, 4-Port, RS485/422 Serial Interface.
    I need to find out how it recovers the data from the link. I need to compare it with 8b/10b encoding.
    Does anyone know what UARTs are used or how the data is recovered.
    Thanks
    John Lee

    Hi John,
    I have had a look into this and I cannot find any specific information on the Transciever or UART. However I have come across an example using the 9871 with processing on a cRIO FPGA.
    To find this example open up Labview » go to Help » Find Examples » Search for 9871 and open up NI-987x Serial Loopback.lvproj.
    Hopefully this should give you a good start. Once your serial data is passed onto the FPGA you can then decode the 8b/10b within the FPGA code.
    Best Regards,
    Ben B.
    Applications Engineer
    National Instruments UK & Ireland
    "I've looked into the reset button, the science is impossible!"

  • I s Final Cut X compatable with Sony HXR MC50E?  What software would I need to make this camera compatable with FC7?

    Is FCP X compatable with Sony HXR MC50E?  What software would I need to make thia camera compatable with FCP 7

    I import media from anothe SONY HXR series camera all the time...

Maybe you are looking for

  • Set sales order status is complete after Billing document created

    Hi experts: Current Complete rule of item category 'TAN' is space. The Status will be set complete after Delivery  document is created. I want to change the rule to the status will be set complete after billing document is created. Han can I do it ??

  • Multiple user profiles on Mac-can all access the same itunes/iphoto data?

    Hi all, Just quick question. Is it possible to set up one mac with multiple users that have their own profiles ( own mail accounts etc) BUT all share the same i photo / itunes / i cal data files etc ? I want to combine the various libraries from a co

  • Unable to send the message from XI to ECC

    Hi experts, I am having a issue whereby the message of my XI server (I have login into the XI server) is shown as below in SXMB_MONI.   <SAP:Category>XIProxy</SAP:Category>   <SAP:Code area="ABAP">INTERFACE_REGISTRATION_ERROR</SAP:Code>   <SAP:P1>ifm

  • Anyone else had this problem with the 2.1 Inspire T2900?

    Problem is as follows The speakers seem to vary in their output quality/volume. I will be playing mp3s (High bit rate) and they will be sounding awesome then out of nowhere at a random point the volume drops slightly and the speakers seems to loose I

  • Partitioning FXO port for different users on Cisco CME 2911or UC540

    Hello, we have 10 users in our network and we have 4 FXO port and lines connected to them, we would like to implement this requirement on our network below; 2 users will have access to FXO port 1 3 users will have access to FXO port 2 3 users will ha