Can someone explain the functionality of the 50-pin connector inside the SCXI-1600 board

Hello,
please explain the functionality of the 50-pin connector inside the SCXI-1600 board.
I would like to have the pinouts (explanation) of this particular connector
kind regards
the lab mouse

Hi,
Using the SCXI-1600 for anything other than controlling a SCXI chassis is NOT supported by NI!
The SCXI-1600 is based on a 16-bit MIO board. There is some additional functionality that is not used while controlling the SCXI chassis. The SCXI-1600 has 8 analog input channels, 8 DIO channels, and 2 counters; there is no analog output support on this board. There is a 50-pin connector inside the SCXI-1600 that can be used to access all of these channels.
Through Daqmx and Internal I/O filtering you can access these channels trough software. There is no pin-layout available because we do not support this.
Regards.
JV
NI Belgium

Similar Messages

  • Can someone explain the use of a hashtable in java?

    can someone explain the use of a hashtable in java?

    Hashtable allows us to store values along with keys.
    One other advantage is, it provides Synchronised methods.
    Hope you got it.

  • Can someone explain the hyperthreading settings in cmos (the 4x,5x, etc.)?

    Someone once said admitting you don't know something is the first step on the road to knowledge....or something like that 
    Can someone explain the hyperthreading setting in the CMOS Setup - mine is set to 5x, which I think is correct for my cpu - Venice 3500+, but I don't really know what it does.  What does that setting affect?  I think it was 4x by default, until I loaded optimal settings, and it went to 5x.....

    HT = Hyper Transport
    Q: What is HyperTransport™ technology?
    A: HyperTransport™ technology is a new high speed, high performance point-to-point link for interconnecting integrated circuits on a motherboard. It can be significantly faster than a PCI bus for an equivalent number of pins. HyperTransport was previously codenamed Lightning Data Transport, or LDT. HyperTransport technology was invented by AMD and perfected with the help of several partners throughout the industry. It is primarily targeted for the IT and Telecomm industries, but any application where high speed, low latency and scalability is necessary can potentially take advantage of HyperTransport technology. HyperTransport technology was invented in order to unleash the tremendous power of the AMD microprocessors. HyperTransport is planned to bring the computation experience to a  new level.
    Hyperthreading Technology used by Intel.

  • Can someone explain the difference between width, maxWidth, explicitWidth, explicitMaxWidth?

    Can someone explain the difference between width, maxWidth,  explicitWidth, explicitMaxWidth of the UI component? I read the API and I  have no idea what do they mean.

    Width is the current width.  ExplicitWidth is set if you give an component
    an explicit width vs a temporary width via setActualSize.
    MaxWidth and minWidth factor in either the measuredMax/MinWidth or one set
    explicitly.

  • Cffunction and how to ? can someone explain the code to me line by line

    Hello i went to get this online and i want to test it.
    the udf is supposed to
    * CSVFormat accepts the name of an existing query and
    converts it to csv format.
    * Updated version of UDF orig. written by Simon Horwith
    my question how to break it down.
    can someone explain the code to me line by line
    thanks

    silviasalsa wrote:
    > thanks
    >
    > but line by line
    >
    > what is
    > if(ArrayLen(Arguments) GTE 2) qualifier = Arguments[2];
    > if(ArrayLen(Arguments) GTE 3 AND Len(Arguments[3]))
    columns = Arguments[3];
    > returnValue[1] = ListQualify(columns, qualifier);
    > ArrayResize(returnValue, query.recordcount + 1);
    > columns = ListToArray(columns);
    > for(i = 1; i LTE query.recordcount; i = i + 1)
    > {
    > rowValue = ArrayNew(1);
    > ArrayResize(rowValue, ArrayLen(columns));
    > for(j = 1; j LTE ArrayLen(columns); j = j + 1)
    > rowValue[j] = qualifier & query[columns[j]]
    & qualifier;
    > returnValue[i + 1] = ArrayToList(rowValue);
    > }
    > returnValue = ArrayToList(returnValue, Chr(13));
    > return returnValue;
    > }
    >
    > thanks
    Apparently this UDF takes two optional parameters so that one
    can define
    (A) a text "qualifier" to use in the CSV file, this is
    usually the
    single quote|tick ['] mark - but sometimes one wants this to
    be a
    different character and (B) what columns to use in the
    output in case
    one does not want to use all the columns in the record set
    in the
    outputted CSV file.
    The if statements are checking for these optional parameters
    and if
    found setting the values in them to internal variables.
    These
    variables are then used in the rest of the logic to create
    the CSV output.
    HTH
    Ian

  • Can someone explain the icloud to me please? Where are all my old pictures and how can I see them? Photostream only holds 1000 and when I sync my icloud to my mac it only imports what is on my photo stream.

    Can someone explain the icloud to me please? Where are all my old pictures and how can I see them? Photostream only holds 1000 and when I sync my icloud to my mac it only imports what is on my photo stream.

    When you enable photo stream on your Mac, in imports photos currently in your photo stream.  However, photo stream only keeps photos for 30 days, even though up to 1000 photos will remain on your device until you delete them.  When you enable photo stream on your Mac, you will only receive photos added in the last 30 days, as the others are no longer in your photo stream.
    If you want to get all your old photos on your Mac, save them to your camera roll (if they aren't already there) by opening your photo stream album, tapping Edit, tap the photos, tap Share, tap Save to Camera Roll.  Once they are in your camera roll, import them to your Mac as explained here: http://support.apple.com/kb/HT4083.
    Another option would be to create a shared photo stream containing the older photos and invite yourself (as explained here: http://help.apple.com/icloud/#mmc0cd7e99).  Then check Shared Photo Streams in iPhoto>Preferences>Photo Stream and you will see this shared photo stream on your Mac.

  • Can someone explain the tables tab under function parameter declaration ?

    Hello,
    when declaring a function, part of its parameter interface is the tables tab. So if in FUNCTION1 i  declare a table: tdraw like draw  (optional)
    what does that mean ? does this mean that tdraw will be a table of type draw and at the same time it will be filled up with the same contents as draw has ?
    then how can other function (func2) use FUNCTION1 and its table ?
    so if inside func2  i also have an internal table AA like draw :
    so inside func2 i say:
    call function1
    tables:tdraw = AA
    does this mean that it will assign the result tdraw table of function1 to AA ?
    can someone explain details of internal tables and passing them as parameters ?
    and which table is assigned to which ?
    thank you

    Hi hassan,
    If you are talking about the tables parameter in SE37, when you declare a table tdraw like draw it only means you are declaring an internal table of type draw but the contents are not filled into it.
    In the source code of the program you have to write the code to fetch the data to tdraw and do the manipulations accordingly.
    Also, the tables you are declaring can be like the input table or can be used for output table.
    suppose u have 2 tables tab1 and tab2, tab1 you are going to input the values to it and the calculated values have to be in another table, you can use tab2 as the result table.
    hope it helps.
    award points if it helps.

  • Can Someone Explain the order of things Using Swingworker?

    Hi:
    Can someone explain very clearly the order of things using Swingworker? Please do not refer the SUN tutorials. I am totally dead in the water with a very large application and the order of things is not sensible. Also, if the worker thread is too long, the GUI gets updated, but my progress bar (killed right after in the finished method) remains running in some instances only.
    Can someone explain any debugging methods for thread work?
    I am a veteran programmer of 19 years and this one's got me. The event dispatch thread returns immediate, the GUI responds well, but the progress bar setVisible(false); ... just after in the finished() method (on Event Dispatch thread) does not go away, continues running, only on very long (large query) work. I'm truly stumped. I have successful applications of the Swingworker use, the progress bar, and everything works fine. Not this one.
    Debugging threads is what I need. Or some tool that visually shows threads as the program runs.
    Thanks for any help,
    PiratePete

    Thanks. I guess I should count my blessings when using free stuff. But I have been impressed with what the J2SDK has to offer. I have been writing a complicated application that I am going to market and most of my problems have been "design" in nature.
    Thanks again,
    PiratePete

  • Can someone explain the code for having the Accordion panels closed?

    I located the answer to my own question (how to get all the accordion panels to remain closed when the browser opens) but I still don't understand the answer. Can someone explain this?
    This feature is only supported when using variable height panels, so you must pass a false into the Accordion's constructor for the "useFixedPanelHeights" constructor options, and a -1 for the "defaultPanel" option:
    <script type="test/javascript">
    var acc1 = new Spry.Widget.Accordion ("Acc1", { useFixPanelHeights: false, defaultPanel: -1});
    </script>
    Angela

    GPDMTR25 wrote:
    I located the answer to my own question (how to get all the accordion panels to remain closed when the browser opens) but I still don't understand the answer. Can someone explain this?
    This feature is only supported when using variable height panels, so you must pass a false into the Accordion's constructor for the "useFixedPanelHeights" constructor options, and a -1 for the "defaultPanel" option:
    <script type="test/javascript">
    var acc1 = new Spry.Widget.Accordion ("Acc1", { useFixPanelHeights: false, defaultPanel: -1});
    </script>
    Angela
    Hi Angela,
    You are right, the only way it will work is by setting the fixed height to false. As for the for the default panel option, -1 is not a panel and if you had 3 panels we could have used the number 3 (panel1 = 0) or 99 or whatever as long as there is no panel with that number. If we had used the number 1 for instance, then the 2nd panel would be opened by default.
    Hope this helps.
    Ben

  • Can someone explain the message about replacing songs when importing a CD?

    If this is somewhere, I have not been able to find the answer. When importing a CD, sometimes I get a message that asks if I want to replace existing songs. Can someone explain what this message means? I have tried replacing the songs and not replacing the songs, but I don't see any meaningful differences.
    Thanks!

    You should sort the list on the Album column, ideally as Album by Artist. Generally all you need to do after that is fill in an appropriate Album Artist. For more details see my article on Grouping Tracks Into Albums, in particular the topic One album, too many covers.
    tt2

  • XIR3 - Can someone explain the port number behaviour?

    I have two questions regarding some of the port numbers that are appearing on my list. Can someone explain this behaviour?They are as follows:
    tcp        0      0 *:1025                      :                         LISTEN      22856/boe_fcprocd
    tcp        0      0 *:16577                     :                         LISTEN      21571/boe_jobsd
    tcp        0      0 *:1026                      :                         LISTEN      15772/boe_fcprocd
    tcp        0      0 *:16583                     :                         LISTEN      21614/boe_fccached
    tcp        0      0 *:16584                     :                         LISTEN      21560/boe_jobsd
    tcp        0      0 *:16585                     :                         LISTEN      21612/boe_fcprocd
    tcp        0      0 *:16586                     :                         LISTEN      21635/boe_jobsd
    tcp        0      0 *:16587                     :                         LISTEN      21616/boe_eventsd
    tcp        0      0 *:16588                     :                         LISTEN      21629/boe_filesd
    tcp        0      0 *:48300                     :                         LISTEN      21326/boe_cmsd
    tcp        0      0 *:46093                     :                         LISTEN      12366/boe_cmsd
    tcp        0      0 *:16525                     :                         LISTEN      12366/boe_cmsd
    tcp        0      0 *:16591                     :                         LISTEN      21600/boe_filesd
    tcp        0      0 *:16527                     :                         LISTEN      13022/boe_jobsd
    tcp        0      0 *:16592                     :                         LISTEN      21574/boe_jobsd
    tcp        0      0 *:16593                     :                         LISTEN      21582/boe_jobsd
    tcp        0      0 *:16533                     :                         LISTEN      13057/boe_fccached
    tcp        0      0 *:16534                     :                         LISTEN      13018/boe_jobsd
    tcp        0      0 *:16535                     :                         LISTEN      13065/boe_fcprocd
    tcp        0      0 *:16536                     :                         LISTEN      13028/boe_jobsd
    tcp        0      0 *:16537                     :                         LISTEN      13054/boe_eventsd
    tcp        0      0 *:16538                     :                         LISTEN      13069/boe_filesd
    tcp        0      0 *:16541                     :                         LISTEN      13052/boe_filesd
    tcp        0      0 *:16542                     :                         LISTEN      13050/boe_jobsd
    tcp        0      0 *:16575                     :                         LISTEN      21326/boe_cmsd
    tcp        0      0 *:16543                     :                         LISTEN      13072/boe_jobsd
    I have two standalone servers configured on this machine (development box), and therefore two CMS configured to listen on port numbers 16575 and 16525. These are confirmed by the 12th and penultimate line. 
    Question: Why are another two CMSs also appearing on ports 48300 and 46093 (lines 10 and 11)?
    Secondly, I have registered the Desktop Intelligence servers to ports 16535 and 16585 (as shown in lines 5 and 19). They are spawning
    child processes on ports 1025 and 1026.
    Question: Can I fix the spawned child ports to a fixed range instead of them being selected randomly?

    I solved the CMS problem - I hadn't changed the CMS request ports. D'OH! Below are the command lines for the two child processes. Is there any documentation around port number controls?
    prismapp 15772 13065  0 11:38 pts/9    00:00:02 /opt/app/mi/mi-bo-dev-env1/bobje/enterprise120//linux_x86/boe_fcprocd -loggingPath /opt/app/mi/mi-bo-dev-env1/bobje/logging/ -documentType CrystalEnterprise.FullClient -maxDesktops 0 -allowSilentRefresh false -fg -restart -name bo_dev_env1_sia.DesktopIntelligenceProcessingServer -pidfile /opt/app/mi/mi-bo-dev-env1/bobje/serverpids/bo_dev_env1_sia_bo_dev_env1_sia.DesktopIntelligenceProcessingServer.pid -ns lonrs00845:16525 -psChildName bo_dev_env1_sia.DesktopIntelligenceProcessingServer_child_1 -psdir /opt/app/mi/mi-bo-dev-env1/bobje/data//DesktopIntelligenceProcessingServer/temp/bo_dev_env1_sia.DesktopIntelligenceProcessingServer/child_1 -pscommondir /opt/app/mi/mi-bo-dev-env1/bobje/data//DesktopIntelligenceProcessingServer/temp/bo_dev_env1_sia.DesktopIntelligenceProcessingServer/common -orphanTimeout 33 -lib procFC -requestPort 1026 -initFileName /opt/app/mi/mi-bo-dev-env1/bobje/data//DesktopIntelligenceProcessingServer/temp/bo_dev_env1_sia.DesktopIntelligenceProcessingServer/child_1/330955ddcecd741 -psChild
    prismapp 22856 21612  0 11:41 pts/9    00:00:01 /opt/app/mi/mi-bo-dev-env2/bobje/enterprise120//linux_x86/boe_fcprocd -loggingPath /opt/app/mi/mi-bo-dev-env2/bobje/logging/ -documentType CrystalEnterprise.FullClient -maxDesktops 0 -allowSilentRefresh false -fg -restart -name bo_dev_env2_sia.DesktopIntelligenceProcessingServer -pidfile /opt/app/mi/mi-bo-dev-env2/bobje/serverpids/bo_dev_env2_sia_bo_dev_env2_sia.DesktopIntelligenceProcessingServer.pid -ns lonrs00845:16575 -psChildName bo_dev_env2_sia.DesktopIntelligenceProcessingServer_child_1 -psdir /opt/app/mi/mi-bo-dev-env2/bobje/data//DesktopIntelligenceProcessingServer/temp/bo_dev_env2_sia.DesktopIntelligenceProcessingServer/child_1 -pscommondir /opt/app/mi/mi-bo-dev-env2/bobje/data//DesktopIntelligenceProcessingServer/temp/bo_dev_env2_sia.DesktopIntelligenceProcessingServer/common -orphanTimeout 33 -lib procFC -requestPort 1025 -initFileName /opt/app/mi/mi-bo-dev-env2/bobje/data//DesktopIntelligenceProcessingServer/temp/bo_dev_env2_sia.DesktopIntelligenceProcessingServer/child_1/546c55ddd11e181 -psChild

  • Can someone explain the "colors" channel of the histogram?

    I'm using CS4 on a Mac
    Could someone explain the "colors" channel of the histogram? Does it simply analyze the image in terms of the % of pixels that are
    *blue
    *cyan
    *green
    *yellow
    *red
    *magenta
    *grey

    Good day!
    It represents which number of pixels have which values in the respective Channel, the refreshed total ("Pixels") is the total number of pixels (image or Selection).
    Regards,
    Pfaffenbichler

  • Can someone explain the impact Summary Accounts has on Oracle performance?

    This may be more of a technical question than a functional question but thought I would test this out on you guys.
    Basically I would like to know what Oracle does in the background with summary accounts for it to slow down the period close process. I have been told it's because Oracle applies summary balances to (temporary?) tables, which means Oracle GL is multiplying the number of processes it has to run when you close a period.
    Can anyone provide any further info on this?
    Thanks

    How do you switch off the slide-lock?  So you could remove it from a holster and just use it?  Or indeed pick it up from a sofa to use.
    You can't, and the reason for this is to prevent the screen from being active and any apps being inadvertently/accidentally selected when the iPhone is in your pocket, in a woman's purse, or just by touching the screen whenever.
    I would not need the passcode and have found how to switch that off.
    You better give this more thought. The passcode lock prevents unauthorized access to anything on your iPhone in the event the iPhone is lost or stolen or from unauthorized access by someone you know. This also prevents someone from syncing your iPhone with iTunes on their computer - creating a backup for your iPhone and extracting data. If your iPhone is lost or stolen, someone must place the iPhone into recovery mode when connected to a computer and can only restore the iPhone with iTunes as a new iPhone - no data on your iPhone can be accessed or extracted in that situation with the passcode lock enabled. 
    Also, on the homescreen, meaning the first set of icons before sliding any across to view others, is it at all possible to put an email icon for each email account on that screen?
    No.
    Or do I have go each time, click Emails, Select account, select email .... ??
    The iPhone's Mail app includes a blended Inbox mailbox for all email accounts. You can select "All Inboxes" to view received email from all email accounts if you are accessing more than one, or you can select an Inbox for an indivudual account to view received messages by the selected account only.

  • Can someone explain the installation options?

    I have yet to purchase the upgrade..
    It looks to be a gamble.. either it will work or it wont..
    Is it possible to do a simple upgrade? Or do you have to Archive and Install?
    What exactly does Archive and Install consist of?
    Im working with 30GB right now and dont feel the need to archive anything...
    Someone please explain the installation process before i purchase. Thanks!

    For me it worked with "archive & install" , which archives the old system (10.4.10) and installed the new 10.5...which gives you a nearly clean new sys with all old prefs and progs etc.- when it ***** - you can go back to 10.4...
    and only take the printers and languages you need - that saves installing time...my macbookpro took about 37 min. of installing 10.5
    and works fine ......

  • Can someone explain the way to install iOS4 via Restore?

    I've tried installing it with the Upgrade tab and I had it backing up for four and a half hours without even being half way done, so I gave up on that option.
    I've been told to do it via restore and then restore a back-up on to it. Can someone kindly explain how to do this?

    If you're using a computer with which you have synced the iphone with in the past, there will be a backup file on that machine for the phone.
    plug your phone into itunes, choose "restore" from the summary page, it will prompt you to "restore from backup" or "restore as a new phone". Assuming you have a relatively current backup that you feel comfortable using, choose restore from backup.

Maybe you are looking for

  • Photostream for Windows keeps changing image file names

    Hi, I have iCloud and the Photo Stream application installed on my Windows Vista PC. I have just returned from a trip abroad and took photos on both my iPhone 4 (updated with iOS6) and a separate digital camera. Having taken thousands of photos, I've

  • Unexpected errors

    I am getting an unexpected error -40 what can i do to fix it

  • ACS 4.2 - stops replicating to 1 server

    ACS 4.2 w/ patch 5 A primary replicates to 6 secondaries. Since mid last week we have not been able to replicate to one server. Within 10 secs of replication starting to this one server we get a Cannot replicate to 'kvhpw1038' - server not responding

  • Importing MPEG and MPG files

    I am trying to import MPG and MPGE files to iMovie but I can't. Any idea?

  • ZMP Charging/Plug I

    I have had my ZMP for about 2 weeks. It did not come with a DC charger so I must charge it from the USB. I have the lastest firmware installed. My problem is, the player never seems to fully charge. Actually I think that it charges and maybe fully, b