PXI 2532, TB 2641 - Need information on interface board solutions

Hi.  I'm working on a project where I am going to be using a PXI-2532 and a TB-2641 to set up an 8 x 64 switch matrix.  I need an possible solutions for an interface board that will take the signals from the  3 ribbon cables from the TB-2641 and route them to either terminal blocks or some connector that I can then wire my measurment signals into. I was hoping to use a 90 pin femal Elco connector, but right now will look at any options.  Please let me know of any interface board solutions that are out there for me to look at.
Thanks,
Doug

No problem Doug,
The SCB-264x is just listed as an accessory right underneath all of the terminal blocks and with the cable options.  If you contact an NI sales representative when trying to configure a system, they will be able to help you pick all of the correct accessories you need.
I will also recommend you check out our tutorial How to Connect Signals to the PXI/PXIe-2532 that walks through all of the components you'll have and the steps necessary to connect them in your system.
Eric S.
AE Specialist | Global Support
National Instruments

Similar Messages

  • Need information about interfaces and namespaces in actionscript 3.0

    Hi,
    I need information about actionscript interfaces and
    namespaces, I'm preparing for ACE for Flash CS3 and I need to learn
    about this subjects and I can not find resources or simple examples
    that make these subjects understandable.
    Anybody can help me!
    Thanks a lot.

    Interfaces (cont.)
    Perhaps the most useful feature of interfaces is that you not
    only can define the data type but also method signature of the
    class that implements this interface. In other words, interface can
    define and enforce what methods class MUST implement. This is very
    useful when classes are branching in packages and team of
    developers works on a large application among others.
    The general syntax for an Interface with method signatures is
    written the following way:
    package{
    public interface InterfaceName {
    // here we specify the methods that will heave to be
    implemented
    function method1 (var1:dataType,
    var2:datType,…):returnType;
    function method2 (var1:dataType,
    var2:datType,…):returnType;
    To the previous example:
    package{
    public interface IQualified {
    function method1 ():void;
    function method2 ():int;
    Let’s write a class that implements it.
    If I just write:
    package{
    public class ClassOne extends DisplayObject implements
    IQualified {
    public function ClassOne(){}
    I will get a compilation error that states that I did not
    implement required by the interface methods.
    Now let’s implement only one method:
    package{
    public class ClassOne extends DisplayObject implements
    IQualified {
    private function method1():void{
    return;
    public function ClassOne(){}
    I will get the error again because I implemented only one out
    of two required methods.
    Now let’s implement all of them:
    package{
    public class ClassOne extends DisplayObject implements
    IQualified {
    private function method1():void{
    return;
    private function method2():int{
    return 4;
    public function ClassOne(){}
    Now everything works OK.
    Now let’s screw with return datatypes. I attempt to
    return String instead of void in method1 in ClassOne:
    private function method1():String{
    return “blah”;
    I am getting an error again – Interface requires that
    the method1 returns void.
    Now let’s attempt to pass something into the method1:
    private function method1(obj:MovieClip):void{
    return;
    Oops! An error again. Interface specified that the function
    doesn’t accept any parameters.
    Now rewrite the interface:
    package{
    public interface IQualified {
    function method1 (obj:MovieClip):void;
    function method2 ():int;
    Now compiler stops complaining.
    But, if we revert the class back to:
    private function method1():void{
    return;
    compiler starts complaining again because we don’t pass
    any parameters into the function.
    The point is that interface is sort of a set of rules. In a
    simple language, if it is stated:
    public class ClassOne implements IQualified
    it says: “I, class ClassOne, pledge to abide by all the
    rules that IQualified has established and I will not function
    correctly if I fail to do so in any way. (IMPORTANT) I can do more,
    of course, but NOT LESS.”
    Of course the class that implements an interface can have
    more that number of methods the corresponding interface requires
    – but never less.
    MORE means that in addition to any number of functions it can
    implement as many interfaces as it is desired.
    For instance, I have three interfaces:
    package{
    public interface InterfaceOne {
    function method1 ():void;
    function method2 ():int;
    package{
    public interface InterfaceTwo {
    function method3 ():void;
    package{
    public interface InterfaceThree{
    function method4 ():void;
    If our class promises to implement all three interface it
    must have all four classes in it’s signature:
    package{
    public class ClassOne extends DisplayObject implements
    InterfaceOne, InterfaceTwi, InterfaceThree{
    private function method1():void{return;}
    private function method2():int{return 4;}
    private function method3():void{return;}
    private function method4():void{return;}
    public function ClassOne(){}
    Hope it helps.

  • I need information of where download Solution Manager 3.2

    Receive a warm greeting.
    I need install Solution Manager but i have Oracle 9.2.0.7 and kernel 6.40, Solution 4.0 SR2 run with this release of database. If it is not thus, of where I can download Solution 3.2
    Thanks

    Hi,
    I suggest u to search it the following Url to download Solution Manager 3.2 .
    url  : http://service.sap.com
    https://websmp104.sap-ag.de/~SAPIDP/002006825000000234912001E
    Regards,
    Ramganesan K.

  • How to obtain 16 x 64 configurat​ion using PXI-2532 switch

    Hello,
          We have a PXI 1042 chasis with PXI-8106 microcontroller and PXI-2532 switch. With this switch and NI TB-2641 we are able to configure the system as 8 x 64 switch. We would like to configure switch as 16 x 64 matrix . After some research I found out that we might need to use two PXI-2532 switches to acheive this. My question is let us suppose we configure two switches as 8 x 32 matrices then how can one switch access the elements on the other switch (In order to make this 16 x 64)? Is this possible ?What are the available alternatives?
    Thanks,
    kartik

    Hi Kartik,
    We have a really great developer zone article on combining switches, I think you'll find most the information your looking for in there.
    Matrix Switch Expansion Guide
    I also found the following screen shot in the NI switches help.
    It looks like this would be easiest if you had the TB 2642, which would allow you to do column expansion with two 8x64 setups (to make a 16x64).
    Let us know if you have any further questions.
    Thanks
    Scott M.
    Applications Engineer
    National Instruments

  • How to wire up and use 256 points at a time on the PXI-2532

    I have a PXI chassis with a PXI-2532 512-Crosspoint Matrix Switch Module, a TB-2640 connected to it, and a PXI-4072 FlexDMM and LCR meter.
    I am trying to use the DMM to make measurements of something connected to the switch matrix.  What I can't seem to figure out, is since the matrix is a 1 wire 4x128 matrix, how do you connect 256 points when there are only 128 conductors in the ribbon cables that attach to the 2640?  There are 2 banks of 8, each with 16-pins, on the TB-2640, that seem to be wired internally together.  I would like to utilize 256 points in the 512 matrix at a time, and currently I have the DMM hooked up to r0 and r1 to take the measurements.  How would I hook up r2 and r3, in the same matrix?
    If you are really confused I can explain further, but I haven't found anything that shows how you would actually connect 256 wires to the 2532, when there are only 128 columns.  Any information helps.
    Thank you.

    Since the matrix is a 4x128, there are 4 rows and 128 columns to which you can connect devices under test (DUTs). You can not connect 256 different DUTs because there are not 256 connections. The points refer to the switches inside the card rather than the actual signals. 
    Here's a bit more info:
    http://www.ni.com/white-paper/4453/en#toc3
    Also I would post future switch questions here:
    http://forums.ni.com/t5/Switch-Hardware-and-Software/bd-p/320
    I hope this helps,
    Eric E.

  • Need Information On R12 Error tables.

    Hi Friends,
    I need information on R12 Error Tables and Staging Error tables. Can you please send me any documention on this.
    Little bit urgent.
    Thanks

    Thanks for you Reply.
    Actually i am new to Apps. I am a OBIEE Developer. Here i will tell you the process. From Flat files to Staging area they are Loading the Data using some Scripts. After that they are using some concurrent programes for clensing the data and load them in to the Interface Tables. Then Those tables are loaded in to the Main oracle Tables.
    Mean while when they loading the data from staging to Interface they clensing the data. If Any errors occur they are moving those tables into some Built in Tables like (MTL_Interface_Errors). This is the process.
    And i don't know how to find the error tables..
    Thanks.
    Edited by: 806756 on Nov 9, 2011 1:34 AM

  • Vad gör "self test" för PXI-2532

    Vilka tester utför "self test" för PXI-2532 switch board?
    Testar den att varje relä fungerar?
    Kan man utföra ett "self test" programatiskt från labview?
    /Dan

    Hey Nikini,
    The first thing we need to check is that the required software is installed.  From your post, it looks like you're trying to create a virtual device with NI Switch Executive (NISE).  Can you please let me know which version of NISE you're using?  To do this, open up Measurement and Automation Explorer (MAX) (should be on your desktop, or Start»Programs»National Instruments»Measurement and Automation) and then expand the Software tab:
    While you're in there, let me know which versions of NI-DAQmx and NI-Switch you have installed.
    Next, let's open up the NI-Switch Soft front panel (Start»Programs»National Instruments»NI-Switch»NI-Switch Soft Front Panel) and see if you can close relays in there.
    -John Sullivan
    Analog Engineer

  • XLR microphone, do I need an audio interface?

    I have a Sennheiser ME66 microphone with a K6 modular power supply.  My computer is a Mac Pro.  Using a chain of cable adapters from Radio Shack, I was able to convert from the Sennheiser XLR output to a mini-mono plug and input the thing into the Mac microphone input. This does not result in any sound getting to my software, so from poking around the Internet, I am starting to think maybe I need an audio interface of some sort.  If that is correct, what is a reasonably priced interface? I only need to connect one XLR device, I am not going to be recording a band or anything, so I don't think I need a complex mixer.  I am going to use the mic for voice over recording, but I want it to sound good.
    Mac Pro 2.93 HHz Quad-Core Intel Xeon; Mac OS X 10.6.8
    Thanks!

    Something like this XLRmic-to-USB preamp should do the job OK.
    http://www.amazon.com/MXL-MICMATEC-Preamp-Condenser-Microphones/dp/B000VZ8WC2
    However, the ME66 is not really a voice mic - it's a directional shotgun, with too much gain for close-miked voice (but you probably know that!)

  • Do I 'need' an audio interface on modern Macs?

    Hi there
    Don't think I've posted on here in nearly 10 years but I'd be really glad of some help.
    I currently record on a 2003 eMac running 10.3.9 using Garageband 06. I record directly into the audio in via a tube preamp.
    I am considering finally upgrading and am weighing up the relative merits of a Mac Mini or an iMac. I am clueless about the technological advances made since I last bought a computer and would appreciate some help. Clearly both those computers will be a quantum leap forward from my eMac. 
    So, specifically, would I need an audio interface with either of the above computers or is the internal soundcard and audio in sufficient? As stated, I don't currently use a USB or Firewire interface and use the eMacs internal soundcard.
    I only record audio and don't use virtual instruments but we have an electronic drum kit knocking about so we may consider using it as a midi trigger at some point. We are an indiepop band so your usual guitar, bass, drums and vocals. I do not expect 'pro' quality as we are a DIY band, hence I've managed for so long with GB. However we've done singles on small indie labels and are releasing an album next year which I'm halfway through recording. I'd just like a bit more power to add some decent reverbs, compression etc to the recordings, but also need to consider how I get audio into the machine in future. I would like to get Logic so that takes some of my budget too. Our songs currently have a maximum of about 10 tracks of audio, I don't envisage going much further than that.
    Hopefully that gives you my basic requirements, so any tips would be greatly appreciated.
    Thanks a lot
    Leon

    The built-in audio-in should yield the same results i would imagine, i've used it before and it' s been fine.  I guess the iMac's etc have a seperate audio-in still?  I know they were stripped from the macbook's (bah!).
    But obviously, you really should get an interface if you want to get serious, as not only will it give you better sound quality, but more control on the sound going in (Gain etc.).

  • I need Information about Grid

    Hello,
    The first, i don't speak english very well.... ;)
    the company for which work has 3 seats now, but is going to open 5 more.
    All these seats are small, and the cost to install Oracle in each one of them is very elevated.
    i would like to know to me if Grid Computing can help me centralizing everything in a Seat. The scalability is something very important. and i need have several instances of BD oracle up...
    I need information...
    Yo can write me to [email protected]
    Thanks in advance

    Hi.
    By seat, I assume you mean site or location.
    It's difficult to answer this type of question as it depends on so many factors. Personally, I would always go for the centralized solution. This way you don't need to worry about replication or distribution of data. Those things are always a nightmare.
    RAC is great for high availability, and it will allow you to increase your horsepower as and when you need it, but you still need to consider your performance erquierments up front.
    Of course, centralization comes with it's own set of problems. Are you going to connect to the central server via the web, VPN, leased line? What happens when the connection is unavailable?
    There is just so much to consider...
    Cheers
    Tim...

  • I need information about personal experience with DFS-R: shortcomings and limitaions of DFS-R

    Hello,
    We plan to install DFS-R in our organization.
    I need information about personal experience with DFS-R: shortcomings and limitations of DFS-R.
    Thank you for any info. 

    Hi,
    You could refer to the articles below to see some limits about DFSR and some DFSR configuration mistakes which will cause DFSR problems:
    Understanding DFS Replication "limits"
    http://blogs.technet.com/b/filecab/archive/2005/12/12/understanding-dfs-replication-_2200_limits_2200_.aspx
    Common DFSR Configuration Mistakes and Oversights
    http://blogs.technet.com/b/askds/archive/2010/11/01/common-dfsr-configuration-mistakes-and-oversights.aspx
    Regards,
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • I need information about reports

    hi gurus,
      i need information about Trending reports and Management reports. Can any body provide me the scenario regarding this issues:

    Hi
    Trend reports are the reports which show a certain trend all over the years
    Say, Sales revenue for the year compared to all the previous years...This show what is the trend in the last few years
    Management reports high level reports with summarized data which helps in decision making. Say, Vendor performance report...this report shows list of default vendors by ranking them and management can decide to continue or not to continue with certain vendors
    Regards
    N Ganesh

  • I need information regarding the creation of Workbook and WAD.

    Hi,
    I need information regarding the How to create the Workbook and WAD.
    Can any one help me to get the information..
    Regards,
    Suman
    Edited by: Suman Reddy Vuyyuru on May 19, 2009 8:22 AM

    Hi,
    for workbook:
    [Queries in Workbook|http://help.sap.com/saphelp_sem40bw/helpdata/en/e3/e60138fede083de10000009b38f8cf/frameset.htm]
    for WAD:
    [WAD for Beginners|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/749a4622-0a01-0010-36bf-b6b30a2a3a22]
    thnks.

  • I need  information  about  oops  concept  programming  in abap

    Hi  ,
    I need  information  about  oops  concept  programming  in abap
    Thanks,
    Asha

    Of course, the best place to start is help.sap.com.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm
    There are a couple good books out there as well.  You can get them at www.amazon.com
    Regards,
    Rich Heilman

  • I need information on my bill, for the last two yrs, how do i go about looking for it

    i need information on my bill for the last two yrs, how i go about looking for it . thanks\

    The last 12 months' worth can be obtained via your on-line MyVerizon account; look under View Bill and use the drop-down to select the appropriate bill.  Anything prior to the past 12 months would need to be obtained via Customer Service; there is a charge (I believe $5 per copy, but I'm not sure).

Maybe you are looking for

  • How do I open and view several images at once?

    I like to compare and see what images I've worked on and would like to have them all open at one time. In CS4 you could have up to 15 open and reduced so you could compare them at once and quickly move from one to the other. Is this possible in CS6?

  • SSRS report- Request timed out error displaying when running.

    I have a parameter which with other date ranges work but where the parameter for datetime is from 4/1/2013 to 5/1/2013 it brings this error: Server Error in '/' Application. Request timed out. Description: An unhandled exception occurred during the e

  • Acrobat 9.4.4 – PDF-secrity

    Hi i've create several password protected .pdf-forms my latest one, the client is asking the following: the .pdf is basically an order form, where a representative would fill in fields and then send the .fdf-file to my client. the  .pdf has password

  • Using DBCA 11g r2

    Hi, I installed 11g r2 and created database as well along with it. I wanted to use dbca to create another database but there is no "database configuration assistant" in "Configuration and migration tools" in program files. can someone tell as to why

  • Java is dependent????

    hi friends actualy my friend went to interview there they asked this question... java is dependent...justifyy.. anyone can pls justify this... thanku byee, keerthi.