Need pin out information for the TB2644 J connectors

The online documentation for the TB-2644 interface block used with the 2532 Switch does not show the pinouts for the output connectors J1-J4. I need this information so that I can run ribbon cables to an external user interface.

Hello KLP,
Welcome to the NI Discussion Forums!  If you search for 2644 on ni.com, you will get a link to the TB-2644 product page.  This page contains some useful information on the terminal block.  In the resources tab open the manuals link and you will see the 8 manuals associated with this device.  The NI TB-2644 Installation Instructions has the information you are looking for.  You can see the pinouts for the column and row connections on page 3 of the manual as well as some ribbon cables that will fit these connectors.  The 2644 is used for matrix expansion in the Dual 8x32 and 2-wire 8x32 matrix modes for the card.  The NI-Switches Help (installed when you install the switch driver) shows this information.  You can find this help file in Windows in the Start menu under Programs -> National Instruments - > NI-Switch -> Documentation -> NI Switches Help (the documentation folder also has the specifications sheets for each switch and terminal block supported by your version of NI-Switch).  If you go to the Devices section in the help file you will find the NI PXI-2532 listed.  There is section on the 2-Wire 8×32 Matrix Topology and the 1-Wire Dual 8×32 Matrix Topology.  If you check these you can see how each column and row is assigned to one of the connectors on the terminal block.  The terminal block installation guide will show you the ordering of the pins.  Hope this helps!
Regards,
Browning G
FlexRIO R&D

Similar Messages

  • Pin Out details for the X-Fi SB0730 SPDIF

    Does anyone know the details of the pin outs of the internal connector. I have a seperate SPDIF connector I want to hook up to this connector.

    Hi dv8inpp
    X-Fi SB0730 -> X-Fi Xtreme Gamer ?
    http://lh6.google.es/rmorinr/RqmofJ7cvkI/AAAAAAAAAfs/Z8wkIkob6Jk/s400/XFiGamer2.jpg">
    I think is like others X-fi
    http://lh4.google.es/rmorinr/RqMqtJ7cvVI/AAAAAAAAAb8/IPrtxXJCDCk/s400/DIY_X-Fi_Output2.jpg">

  • How do i log in on a macbook air with out wifi for the first time

    How do i log in on a macbook air with out wifi for the first time

    More details needed.
    Otherwise just startup the computer and enter your password.
    New Mac?
    A new Mac comes with 90 days of free tech support from AppleCare.
    AppleCare: 1-800-275-2273
    Call AppleCare.
    Best.

  • Warning Messages - Could not find schema information for the element applicationSettings - App.Config of a console app

    This is my app.config file
    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
        <configSections>
            <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
                <section name="IntelBrandFX.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
            </sectionGroup>
        </configSections>
      <appSettings>
        <add key="connStr" value="Data Source=tmvnasql1.tmvn.com;Initial Catalog=brandplan;Integrated Security=True"/>
      </appSettings>
      <applicationSettings>
        <IntelBrandFX.Properties.Settings>
          <setting name="IntelBrandFX_rollupViewerService_extract" serializeAs="String">
            <value>https://viewer.rollup.com/omdsp2008/extract.asmx</value>
          </setting>
        </IntelBrandFX.Properties.Settings>
      </applicationSettings>
    </configuration>
    And the Warning messages  are
    Message 1 Could not find schema information for the element 'applicationSettings'.
    Message 2 Could not find schema information for the element 'IntelBrandFX.Properties.Settings'.
    Message 3 Could not find schema information for the element 'setting'.
    Message 4 Could not find schema information for the attribute 'name'.
    Message 5 Could not find schema information for the attribute 'serializeAs'.
    Message 6 Could not find schema information for the element 'value'.
    Althought they do no hinder me from successfully running the project. these messages are annoying. I have seen many articles on the web but could nowhere find the exact schemas for that the above elements that I could add to the  DotNetConfig.xsd file.
    Could somebody give me an idea how to create xsds for the elements above and include in the dotnetConfig.xsd.
    I understand what needs to be done but not sure of the exact way to do it.
    Thanks,

    You don't need to modify the dotnetconfig.xsd.  All you need to do is generate an XSD for your section and let VS know where it is at.
    1) Create your XSD using any of the various tools available or by hand.
    2) Copy your XSD into the <VSDir>\Xml\Schemas directory.
    3) Create a catalog file for your schema.
    4) Restart VS and it'll load the XSD and give you Intellisense.
    Here's the MSDN documentation for it: http://msdn.microsoft.com/en-us/library/ms255821.aspx
    Michael Taylor - 8/18/09
    http://p3net.mvps.org

  • Need best Architecture design for the following scenario

    Hi Experts,
    I need best architecture design for the following scenario:
    Sender: Mail
    Receiver: if sender body contain u201DApproveu201D, then call SOAP adapter, If SOAP adapter execute successfully, then  send Mail(SOAP adapter executed successfully) and SMS .  So receiver is SOAP, Mail and SMS.
    My current approach issue:
    Three message mapping:
    Mapping1: mail to SOAP
    Mapping2: mail to Mail
    Mapping3: mail to SMS
    In interface determinant>u201DSelect all three operation mappingu201D> u201Cselect order at runtimeu201D.
    Issue in current approach: For me first SOAP adapter should complete successfully, after that only my Mail and SMS operation mapping should execute:
    But problem is before success of SOAP adapter engine, Mail and SMS mapping completed or integration engine executed.
    Note: There is possible to fail the SOAP request in adapter engine.
    Kindly help me --> u201CAm I going correct way or want to change the architectureu201D?
    Thanks for advance!!
    Regards, Kumar

    What do you mean by successful execution of soap call?  Are you talking about Successful response (happy flow) from the soap call instead of application error ? Then based on the response you want to decide sending mail and sms.  How big call is your soap ?  If your soap interface is very simple I can give the other possible way.
    Sender sends the message, use mapping  to read the content and then do soap call in the mapping itself and after seeing the soap response decide about two receivers (mail and SMS).  If your soap call is very simple one, you can go for it. Otherwise I would not recommend this. The reason is you loose some visibility regards to monitoring during soap call in the mapping.
    Other option is go for CCBPM.  Here you receive the message, use send step to soap interface which is sync step. Then after seeing the response create another block with fork steps each for two senders mail and sms. If response bad then dont proceed or execute the next block. Simply use exeception or control step to jump out from the block,

  • I just upgraded to iPhoto '11.  When it was finished many pictures do not appear.  I have a black box but the information for the picture is still there.  Some are raw and some are jpeg.  Also lost all albums.  Can anyone offer assistance?

    I just upgraded to iPhoto '11.  When it was finished many pictures do not appear.  I have a black box but the information for the picture is still there.  Some are raw and some are jpeg.  Also lost all albums.  Can anyone offer assistance?  Using iOS 10.7.5

    Apply the two fixes below in order as needed:
    Fix #1
    1 - launch iPhoto with the Command+Option keys held down and rebuild the library.
    2 - run Option #4 to rebuild the database.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.
    2 - click on the Add Library button and select the library you want to add in the selection window..
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the Library ➙ Rebuild Library menu option.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments.  However, books, calendars, cards and slideshows will be lost. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • Getting error log 'Customer' needs to be defined for the PA segment'

    Hi guru,
    i am posting automatic payment transaction (F110) ,but i am getting in display log that
    I am unable to do the posting?
    can somebody let me know any reason for this?
    04/09/2010 12:57:54 Job started                                                                        00           516          S
    04/09/2010 12:57:54 Step 001 started (program SAPF110S, variant &0000000089657, user ID X1SRAVKU)      00           550          S
    04/09/2010 12:57:54 Log for payment run for payment on 01/22/2010, identification EIN5                 FZ           401          S
    04/09/2010 12:57:54 'Customer' needs to be defined for the PA segment                                       ZF           019          S
    04/09/2010 12:57:54 Information re. customer 1002215 / paying company code WG ...                     FZ           306          S
    04/09/2010 12:57:54 ... payment not possible because of reported error                                 FZ           311          S
    04/09/2010 12:57:54 End of log                                                                         FZ           398          S
    04/09/2010 12:57:55 Job finished                                                                       00           517          S

    We have user defined PA characteristics.  If there is  new characteristic we update the custom lists through KES1.
    Lack of a match in this table, leads either to no description or the error you are describing.
    good luck

  • Timed out waiting for the CRS stack to start on Second node.

    Hi,
    I am trying to setup 2 node 11gR2 RAC in vmware. I face the Timed out waiting for the CRS stack to start error on second node while running root.sh.I checked the cluster log files located in  /u01/app/11.2.0/grid/log/node1/alertnode2.log it shows as mentioned below.But when i logged into ASM instance and checked the diskgroup and it is in mount state on both nodes,So i am really confused why i ended up with error in 2nd node on running root.sh. Can anyone tell me how to correct this error or any other checking needs to be done?
    /u01/app/11.2.0/grid/log/node1/alertnode2.log
    [ohasd(23261)]CRS-2765:Resource 'ora.crsd' has failed on server 'node2'.
    2014-01-21 21:40:10.314
    [crsd(25309)]CRS-1006:The OCR location +DATA is inaccessible. Details in /u01/app/11.2.0/grid/log/node2/crsd/crsd.log.
    2014-01-21 21:40:11.217
    [ohasd(23261)]CRS-2765:Resource 'ora.crsd' has failed on server 'node2'.
    2014-01-21 21:40:12.422
    [crsd(25335)]CRS-1006:The OCR location +DATA is inaccessible. Details in /u01/app/11.2.0/grid/log/node2/crsd/crsd.log.
    2014-01-21 21:40:13.327
    [ohasd(23261)]CRS-2765:Resource 'ora.crsd' has failed on server 'node2'.
    2014-01-21 21:40:14.514
    [crsd(25356)]CRS-1006:The OCR location +DATA is inaccessible. Details in /u01/app/11.2.0/grid/log/node2/crsd/crsd.log.
    2014-01-21 21:40:15.439
    [ohasd(23261)]CRS-2765:Resource 'ora.crsd' has failed on server 'node2'.
    2014-01-21 21:40:15.440
    [ohasd(23261)]CRS-2771:Maximum restart attempts reached for resource 'ora.crsd'; will not restart.
    root.sh output
    [root@node2 ~]# /u01/app/11.2.0/grid/root.sh
    Running Oracle 11g root.sh script...
    The following environment variables are set as:
        ORACLE_OWNER= oracle
        ORACLE_HOME=  /u01/app/11.2.0/grid
    Enter the full pathname of the local bin directory: [/usr/local/bin]:
    The file "dbhome" already exists in /usr/local/bin.  Overwrite it? (y/n)
    [n]: y
       Copying dbhome to /usr/local/bin ...
    The file "oraenv" already exists in /usr/local/bin.  Overwrite it? (y/n)
    [n]: y
       Copying oraenv to /usr/local/bin ...
    The file "coraenv" already exists in /usr/local/bin.  Overwrite it? (y/n)
    [n]: y
       Copying coraenv to /usr/local/bin ...
    Entries will be added to the /etc/oratab file as needed by
    Database Configuration Assistant when a database is created
    Finished running generic part of root.sh script.
    Now product-specific root actions will be performed.
    2014-01-21 21:37:55: Parsing the host name
    2014-01-21 21:37:55: Checking for super user privileges
    2014-01-21 21:37:55: User has super user privileges
    Using configuration parameter file: /u01/app/11.2.0/grid/crs/install/crsconfig_p                   
    arams
    LOCAL ADD MODE
    Creating OCR keys for user 'root', privgrp 'root'..
    Operation successful.
    Adding daemon to inittab
    CRS-4123: Oracle High Availability Services has been started.
    ohasd is starting
    CRS-4402: The CSS daemon was started in exclusive mode but found an active CSS daemon on node 11gdb, number 1, and is terminating
    An active cluster was found during exclusive startup, restarting to join the cluster
    CRS-2672: Attempting to start 'ora.mdnsd' on 'node2'
    CRS-2676: Start of 'ora.mdnsd' on 'node2' succeeded
    CRS-2672: Attempting to start 'ora.gipcd' on 'node2'
    CRS-2676: Start of 'ora.gipcd' on 'node2' succeeded
    CRS-2672: Attempting to start 'ora.gpnpd' on 'node2'
    CRS-2676: Start of 'ora.gpnpd' on 'node2' succeeded
    CRS-2672: Attempting to start 'ora.cssdmonitor' on 'node2'
    CRS-2676: Start of 'ora.cssdmonitor' on 'node2' succeeded
    CRS-2672: Attempting to start 'ora.cssd' on 'node2'
    CRS-2672: Attempting to start 'ora.diskmon' on 'node2'
    CRS-2676: Start of 'ora.diskmon' on 'node2' succeeded
    CRS-2676: Start of 'ora.cssd' on 'node2' succeeded
    CRS-2672: Attempting to start 'ora.ctssd' on 'node2'
    CRS-2676: Start of 'ora.ctssd' on 'node2' succeeded
    CRS-2672: Attempting to start 'ora.drivers.acfs' on 'node2'
    CRS-2676: Start of 'ora.drivers.acfs' on 'node2' succeeded
    CRS-2672: Attempting to start 'ora.asm' on 'node2'
    CRS-2676: Start of 'ora.asm' on 'node2' succeeded
    CRS-2672: Attempting to start 'ora.crsd' on 'node2'
    CRS-2676: Start of 'ora.crsd' on 'node2' succeeded
    CRS-2672: Attempting to start 'ora.evmd' on 'node2'
    CRS-2676: Start of 'ora.evmd' on 'node2' succeeded
    Timed out waiting for the CRS stack to start.
    Regards,
    007

    Hi,
    Are you trying to install on Vmware Workstation or Vmware Server?
    If you are using vmware server add below line in your .vmx file for both node
    scsi1.sharedBus = "VIRTUAL"
    First check which scsi serial number are you using as above I have selected scsi1 serial during disk addition, 

  • Error messages or information for the invalidation of those procedures

    Hello expert:
    I have a few procedure invalidated . in principle , those procedures should be validated automatically when they are called somewhere. but they don't, that means there are some error blocking them validated. please where I can find out corresponding error messages or information for the invalidation of those procedures.
    Many Thanks.

    CREATE TABLE t
    AS
       SELECT 1 id FROM DUAL;
    CREATE OR REPLACE PROCEDURE my_procedure
    AS
       v_id   t.id%TYPE;
    BEGIN
       SELECT id INTO v_id FROM t;
    END;
    CREATE OR REPLACE PROCEDURE my_proc2
    AS
    BEGIN
       my_procedure;
    END;
    exec my_proc2;
    DROP TABLE t;
    ALTER PROCEDURE   dsamstrc.my_proc2
       COMPILE;
    SELECT *
      FROM SYS.USER_ERRORS
    WHERE NAME = 'MY_PROC2'
           OR NAME IN (SELECT REFERENCED_NAME
                         FROM dba_dependencies
                        WHERE NAME = 'MY_PROC2');
    NAME     TYPE     SEQUENCE     LINE     POSITION     TEXT     ATTRIBUTE     MESSAGE_NUMBER
    MY_PROCEDURE     PROCEDURE     4     4     2     PL/SQL: SQL Statement ignored     ERROR     0
    MY_PROCEDURE     PROCEDURE     3     4     27     PL/SQL: ORA-00942: table or view does not exist     ERROR     0
    MY_PROCEDURE     PROCEDURE     2     2     10     PL/SQL: Item ignored     ERROR     0
    MY_PROCEDURE     PROCEDURE     1     2     10     PLS-00201: identifier 'T.ID' must be declared     ERROR     201
    MY_PROC2     PROCEDURE     2     3     5     PL/SQL: Statement ignored     ERROR     0
    MY_PROC2     PROCEDURE     1     3     5     PLS-00905: object DSAMSTRC.MY_PROCEDURE is invalid     ERROR     905wonder if something like this would work if the dependencies were more than 2 deep.
    SELECT distinct *
      FROM SYS.USER_ERRORS
    WHERE NAME in
           (SELECT name
            FROM dba_dependencies
    connect by nocycle  name =  prior  referenced_name
    start with NAME = 'MY_PROC2')
    order by name;Edited by: pollywog on Apr 4, 2011 2:49 PM

  • I have recently been asked to research information for the following.

    I have recently been asked to research information for the following.
    Add a backend SQL server to the current Access 2010 set up we have in place as the front end, for 11 users.
    Upgrade to Access 2013 which I understand includes the SQL at no additional charge.
    I am looking for pro vs cons between the two options. 

    Hello,
    Your number 1 option was called “Upsizing an Access Database to SQL Server”
     and keeps the front-end on the Access side. The issue here is that the upsizing process was not always an easy one: you may find some issues with the way SQL handles dates and the way VBA generates those dates; VBA handles strings with double quotes
    while T-SQL uses single quotes; VBA functions like Date() and Now() should be replaces by T-SQL functions like CONVERT/CAST and GETDATE; InStr and Mid functions should be replaced by Substring function on T-SQL; the IIF function should be replaced by the CASE
    statement (T-SQL); need to convert Access table constrains to SQL Server constraints; etc.
    Now with Access 2013 (Option 2), you don’t have to think about the above upsizing process anymore, since that old access project/linked server functionalities are
    replaced by natively use SQL Server databases. That means no more 2 GB limit for Access databases.
    Now Access 2013 makes available the possibility to use SQL Server Reporting Services for reporting and opens the gateway to SQL Azure.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • How to findout the data source information for the perticular tables

    Hi,
    Can you please tell me the process to findout the data source information for the perticular tables .
    For ex.. T2503 ,T2507 ,T25A1,T25A2 etc ..
    I am doing a reverse engineering to find out the data sources build on the above SAP Tables.
    Thanks.

    Hi,
    Still we haven't get the field level information ,before they send us we should first give them the corresponding data sources for the COPA tables which they have given .
    I have searched in help.sap.com but I didn't find any information on this .
    Please let me know is there any way to know the data source details for SAP Tables.
    Thanks

  • Is shelling out $59 for the added years of Apple protection worth it?

    Hello,
    My iPod's been acting a little funny, lately, but, hey, what's new about that. I bought my iPod from Circuit City in June (also bought a $50 warranty thingie with it), but Apple says my one-year warranty expires in 19 days. Can I correct them? Also, is it worth it shelling out $59 for the additional 2 years of Apple protection? Does said protection cover battery service and repairs?
    Gateway   Windows XP  

    also bought a $50 warranty thingie with it),
    What is a "warranty thingie"?
    but Apple says my one-year warranty expires in 19 days.
    Do you mean the Applecare Protection Plan (APP) warranty? Is this the "warranty thingie" you bought at Circuit City?
    If so, you need to make sure you register the warranty here http://www.apple.com/support/selfservice/agreements
    Or is it a Circuit City warranty thingie?
    Can I correct them?
    Correct Apple about the purchase date? Yes you should.
    Go to http://www.apple.com/support/ and put your iPod serial number in at the bottom right. It will show you how long you have left on your warranty (original or extended).
    Also, is it worth it shelling out $59 for the additional 2 years of Apple protection?
    It is an additional one year (not two years more) of protection for a total of two years from purchase.
    A battery replacement after 6 months but inside one year warranty is ~$29 for shipping.
    Battery replacement out of warranty is ~$59 plus ~$29 for shipping.
    APP also gets you free telephone support for the entire waranty period. Teh standard warranty that comes with the iPod is one support incident in the first 90 days (you are already past this).
    Does said protection cover battery service and repairs?
    Yes, except for accidents and abuse. See http://www.apple.com/support/products/applecareipod.html

  • I urgently need a contact email for the sales team can anybody help me with this

    I urgently need a contact email for the sales team regarding an outstanding query, can anybody help me with this please? Thanks in advance.

    Hello 
    Welcome to the EE Community! I'm afraid there isn't an e-mail you can contact the EE Mobile Sales team on, but here's how you can get in touch with them:
    If you're on Twitter, you can tweet them @EE, however If you'd prefer to talk to someone, you can dial:
    150 from your EE mobile phone
    If you're ringing from another phone, it's 01707 315000
    For handy text codes & more, check out this page: http://ee.co.uk/help/get-in-touch Cheers,
    Titanium
    Was my post helpful? Please take 2 seconds to hit the 'Kudos' button below

  • Do I need a credit card for the app store to download free games

    Hi, Do I need a credit card for the app store to download games

    Hello yongxiahuang,
    It sounds like you would like to download free apps without a credit card on your apple ID. You should be able to update your billing information payment method to None with this article:
    iTunes Store: Changing your payment information
    http://support.apple.com/kb/ht1918?viewlocale=de_de&locale=en_CA
    Changing your payment information using a computer
    Open iTunes.
    Choose Store > Sign In.
    Enter your Apple ID and password and click Sign In.
    Choose Store > View Account.
    Enter your account password and click View Account.
    From the Apple Account Information page, click Edit to the right of Payment Type.
    Note: You can find the payment methods that the iTunes Store accepts in the Payment Type section. If you don't want a payment method on your account, select None in the Payment Type section.
    Click the Done button after you've updated all of your information.
    Step 6 in particular.
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • Itunes has encountered a problem and needs to close, sorry for the inconvience., itunes has encountered a problem and needs to close, sorry for the inconvience.

    iTunes always quit with the error message "
    itunes has encountered a problem and needs to close, sorry for the inconvience. " Uninstalled and re-installed many times, but the issue still persists.

    Generate another of those error messages and click the "Click here" link in the error message box. What modname and modver are showing for the error? (Precise spelling please.)
    If the error is a BEX and thus doesn't show an modname or modver, let us know what P1 through P9 items are showing for you instead.

Maybe you are looking for

  • Look up

    Hi Is look up table and field is used for validation purpose. I mean suppose there are some division name under look up table for example  A,B,C,D. Now when we are going to put the division name  in corresponding look up division field. Then there we

  • Creating a Link with XML Files

    Hi, I am trying to import a XML file in a table structure following instructions from the Adobe help file (could only find a CS3 one, I am using CS4, the link to it: http://www.adobe.com/designcenter/indesign/articles/indcs3ip_xmlrules.pdf). Now the

  • Remove Credit Card From Apple ID And ITunes.

    Hello, i need a simple and straight forward way to remove my credit card information on my apple ID so i can download free apps again. HELP!

  • Special stock indicator in WM

    Hi , In SPRO path LEdecentralised WMScentral processingapplicationdefine interface to inv.mgmt and delvery related data --delivery related parameter for ref.mvmt type there is field SPSTIND (special stock indicator for WM).Values in it are 1,2,,Q,S e

  • Aperture adjustments - where are they now?

    I bought an upgrade for my Aperture and it had a load of  'Add adjustments', accessible from the Head Up Display. A recent free upgrade has none in the drop down and nor can I find any in the menu bar. How do I get hold of them? I just can't live wit