Control PCLK when using the PXI-6534 in e/s mode

I use ports 0 & 1 on the PXI-6534 in e/s model mode and also use output control in the mode of e/s to unstrobed for simple.  Users manual says in the mode of e/s model the PCLK control is not used, but the mode of e/s model seems to put down (or maybe he defines as an entry).  This a problem for me because I expect to PCLK to stay a high return which I set earlier.  Does anyone know how to set up the PXI-6534 in e/s model mode so that this does not affect PCLK... He's going to stay high?

Thank you.

Jim

Hi Jim,.

According to page 2 and 3 of the PXI-6534 user manual, if you configure a group to perform i/o, associated for this group synchronization control lines are not available in the form of additional data lines. The knowledge base, here, explains this limitation for the PXI-6534. In summary, port 4 is reserved once you are in e/s handshaking mode or a model and cannot be used as data lines additional unstrobed.

Tags: NI Hardware

Similar Questions

  • Re: Inaccurate cursor when using the stylus on Portege M700 Tablet mode

    Hello

    I was struggling with my stylus for a few months. When I use it, the cursor is just the tip, when I'm in the corners (where the calibration takes place). More central that I get on the screen, more it is. We're talking about half a centimeter, which does not seem a lot, but that can be a real pain if you try to write or draw on the screen.
    The tragic part is that it started AFTER I used the tool of calibration for the first time. If I had known that it makes things worse, I would not have touched him.
    My question is: is there anyone out there with the same problem, or is it unique? If this is the case, I'll have a conversation with my dealer after I go home.

    If it is not unique, how this was dealt with?

    My laptop is a Portege M700, with Windows Vista Business SP1. This issue has been consistent through all kinds of situations, hardware configurations and software content, and the starting point was obviously the calibration.
    I thank in advance anyone who can shed some light on this for me.

    Best,
    Oliver

    You're calibrating with the stylus on an angle?

    Try it with the completely vertical stylus.

  • Problem with the PXI-6534 elimination change detection task

    I ran into the following problem.  I use a PXI-6534 and PXI-6602 with vb.net for detection with a timestamp of changes.  My code works fine and I get data exactly as I want, the problem comes when I try to call the task.dispose function.

    When I call him has, she throws an exception with error-200088 code, task does not exist.  But the task is still stopped and I can run my code again and everything works fine.  If I do not call the task.dispose, I get an error when I try to run my code again.  The material seems to have left in an unknown state, and I have to restart my computer to get it back. (the MAX NOR even reset the 6602, he says only that the Council does not exist).

    Interesting also is the exception thrown does not seem to be caught by the Try Catch method.  The code traverses the Try Catch without any problem (step by step in the code anyway), but with the exception, the message box appears, either immediately or when coming out of the subroutine.

    Also, I use TestStand 4.2 to call these functions, if that makes a difference.

    Any help would be greatly appreciated!  Its very frustrating that everything works and I get my data perfectly, but I can't run the code without exception popping up, and I can't seem to catch the exception.

    Here is the code I use:

        Public Sub StartChangeDetect_UUT1()
            If myCDrunningTaskA Is Nothing Then
                Try
                    ' Create the task
                    uut1ChangeDetectTask = New Task()
    
                    '************************ Create the digital input virtual channel alias
                    'Assign ports to digital virtual channel
                    uut1ChangeDetectTask.DIChannels.CreateChannel("Dev1/port0:3", "ChangeDetectUUT1", ChannelLineGrouping.OneChannelForAllLines)
                    'uut1ChangeDetectTask.DIChannels.All.DigitalFilterEnable = True
                    'uut1ChangeDetectTask.DIChannels.All.DigitalFilterMinimumPulseWidth = 0.000001
                    uut1ChangeDetectTask.DIChannels.All.InvertLines = True
                    uut1ChangeDetectTask.DIChannels.All.DataTransferMechanism = DIDataTransferMechanism.Dma
    
                    'Assign ports to monitor for change detection, both rising and falling edges
                    Dim rising As String
                    Dim falling As String
    
                    rising = "Dev1/port0:3"
                    falling = "Dev1/port0:3"
                    uut1ChangeDetectTask.Timing.ConfigureChangeDetection(rising, falling, SampleQuantityMode.ContinuousSamples, 4000000)
    
                    'export change detect event to PXI backplane so we can get timestamps from timer.
                    uut1ChangeDetectTask.ExportSignals.ChangeDetectionEventOutputTerminal = "/Dev1/PXI_Trig0"
                    uut1ChangeDetectTask.ExportSignals.ChangeDetectionEventPulsePolarity = ChangeDetectionEventPulsePolarity.ActiveHigh
    
                    'uut1ChangeDetectTask.Stream.Timeout = 20000
    
                    ' Verify the Task
                    uut1ChangeDetectTask.Control(TaskAction.Verify)
    
                    ' Set up the data table
                    Initializeuut1DataTable()
    
                    ' Create the readers for the DI and the CI
                    uut1ChangeDetectReader = New DigitalSingleChannelReader(uut1ChangeDetectTask.Stream)
    
                    uut1CDCallback = New AsyncCallback(AddressOf uut1ChangeDetectCallback)
                    uut1ChangeDetectReader.SynchronizeCallbacks = False
                    ' Set up our first callback
    
                    uut1ChangeDetectReader.BeginReadMultiSamplePortUInt32(-1, uut1CDCallback, uut1ChangeDetectTask)
                    myCDrunningTaskA = uut1ChangeDetectTask
    
                    'Set up Timer for time stamp
    
                    uut1TimeStampTask = New Task()
                    '****************set up PXI-6602 timer to get buffered change events.  ie capture timer output on  the PXI_Trig0
                    'we can then correlate this timer capture buffer to the change detect buffer to get the time stamps
    
                    uut1TimeStampTask.CIChannels.CreatePeriodChannel("Dev5/ctr0", "TimeStamp1", 0.0000001, 0.02, CIPeriodStartingEdge.Rising _
                                 , CIPeriodMeasurementMethod.LowFrequencyOneCounter, 4, 4, CIPeriodUnits.Seconds)
                    uut1TimeStampTask.CIChannels.All.CounterTimebaseRate = 20000000.0
    
                    'Use exported change detect from 6534 board to take counter sample
                    uut1TimeStampTask.Timing.ConfigureImplicit(SampleQuantityMode.ContinuousSamples)
                    uut1TimeStampTask.CIChannels.All.PeriodTerminal = "/Dev5/PXI_trig0"
                    'uut1TimeStampTask.CIChannels.All.DuplicateCountPrevention = False
                    uut1TimeStampTask.CIChannels.All.DataTransferMechanism = CIDataTransferMechanism.Dma
    
                    ' Set timeout
                    'uut1TimeStampTask.Stream.Timeout = 20000
                    ' Verify the Task
                    uut1TimeStampTask.Control(TaskAction.Verify)
                    uut1TimeStampReader = New CounterReader(uut1TimeStampTask.Stream)
                    uut1TSCallback = New AsyncCallback(AddressOf uut1TimeStampCallback)
    
                    uut1TimeStampReader.SynchronizeCallbacks = False
                    uut1TimeStampReader.BeginReadMultiSampleDouble(-1, uut1TSCallback, uut1TimeStampTask)
                    myTSrunningTaskA = uut1TimeStampTask
    
                Catch exception As DaqException
                    ' Display Errors
                    MessageBox.Show(exception.Message)
                    uut1StopChangeDetection("C:\PT3771\TestResults\")
                End Try
            End If
        End Sub
    
        Private Sub uut1ChangeDetectCallback(ByVal result As IAsyncResult)
            Try
                'If runningTask Is ar.AsyncState Then
                If myCDrunningTaskA Is uut1ChangeDetectTask Then
                    ' Read the available data from the channels
                    Dim data As UInt32() = uut1ChangeDetectReader.EndReadMultiSamplePortUInt32(result)
    
                    Dim b As UInt32
                    For Each b In data
                        ' in TestData waveform Y axix is data, x axis is time 
    
                        uut1TestData.SetY(uut1ChangeDataIndex, b)
                        uut1ChangeDataIndex += 1
    
                    Next b
    
                    '' Set up a new callback
                    uut1ChangeDetectReader.BeginReadMultiSamplePortUInt32(-1, uut1CDCallback, uut1ChangeDetectTask)
                End If
            Catch exception As DaqException
                ' Display Errors
                MessageBox.Show(exception.Message)
                uut1StopChangeDetection("C:\PT3771\TestResults\")
            End Try
        End Sub 'DigitalCallback
    
        Private Sub uut1TimeStampCallback(ByVal result As IAsyncResult)
            Try
                'If runningTask Is ar.AsyncState Then
                If myTSrunningTaskA Is uut1TimeStampTask Then
                    ' Read the available data from the channels
                    Dim data2 As Double() = uut1TimeStampReader.EndReadMultiSampleDouble(result)
    
                    ' in TestData waveform Y axix is data, x axis is time
                    Dim b As Double
                    For Each b In data2
                        uut1TimeSum = uut1TimeSum + b
                        uut1TestData.SetX(uut1TimeStampIndex, uut1TimeSum)
                        uut1TimeStampIndex += 1
                    Next b
    
                    ' Set up a new callback
                    uut1TimeStampReader.BeginReadMultiSampleDouble(-1, uut1TSCallback, uut1TimeStampReader)
    
                End If
            Catch exception As DaqException
                ' Display Errors
                MessageBox.Show(exception.Message)
                uut1StopChangeDetection("C:\PT3771\TestResults\")
            End Try
        End Sub 'CounterCallback
    
        Public Sub uut1StopChangeDetection(ByVal location As String)
    
            Try
                If Not (myTSrunningTaskA Is Nothing) Then
                    uut1TimeStampTask.Dispose()
                    myTSrunningTaskA = Nothing
    
                End If
    
                If Not (myCDrunningTaskA Is Nothing) Then
                    uut1ChangeDetectTask.Dispose()
                    myCDrunningTaskA = Nothing
    
                End If
            Catch ex As Exception
                MessageBox.Show(ex.Message)
            End Try
    
            uut1TestData.UpdatePointCount()
            uut1TestData.SaveToDisk("C:\PT3771\TestResults\uut1TestWaveFile.csv")
            uut1TestData.SaveToDiskBinary("C:\PT3771\TestResults\uut1TestWaveFile")
        End Sub 'StopTask
    

    Joe,

    Last updated.  It seems that when the task.dispose is run, recalls seem to have called one last time.  I took the call to the stopUUT1ChangeDetect in the two recalls (so eliminate it would not enforce a second time), and no exception was thrown.

    Thanks for your help!  Although if you'd still answer my question on the PXI-6534 Digital input filtering, I'd appreciate it.

    Thanks again.

    Thad

  • Error message indicating the r300 display driver stopped responding when using the full screen.

    Original title: driver atikmdag error message when using the full screen.

    Error message indicating the display driver r300 unresponsive, but has recovered, usually when enter full screen mode.

    Hi Peterrichardson,

    1. when exactly you get this message?

    2. what player do you use?

    3. you remember to make changes to the computer before this problem?

    Method 1:

    You can try to reduce the hardware acceleration and check.

    a. click the Start button, Control Panel.

    b. now, select appearance and personalization, and under display, select adjust screen resolution.

    c. now, select adjust the resolution.

    d. click Advanced settings.

    e. now, click the Troubleshooting tab, and select the change settings button.

    f. in the Security dialog box, click on continue.

    g. move the hardware acceleration slider to the third notch.

    h. click OK and restart Windows.

     

    Method 2: Update your display driver

    Updated a hardware driver that is not working properly

    Hope this information is useful.

  • I a s 6 more and when using the phone, if my face touches the screen it clicks on the logout button and the phone hangs up the call. Is it possible to prevent this without holding the phone away from my face when calling?

    I a s 6 more and when using the phone, if my face touches the screen it clicks on the logout button and the phone hangs up the call. Is it possible to prevent this without holding the phone away from my face when calling?

    iPhones have a proximity sensor which is supposed to automatically turn off the screen when you hold it in your face. If this is not the case you can take the phone and have it checked.

  • I6 fire babysit device when using the internet? any solution?

    I6 fire babysit device when using the internet? any solution?

    Let's define "overheating". If the temperature of the phone reached a dangerous level the phone turns off it to cool down. This phenomenon occur? If this is not the case it is not overheated.

    What is your cell signal? If the signal is low, the phone must increase its power to maintain a connection. This may require as much as 10 times the energy as a strong signal, and the phone gets hot under these conditions. If will also drain the battery very quickly.

  • Satellite A200 - IE7 windows 'restore down' when using the Tracker pad

    Hi, I recently bought a Satellite A200 - 1VO and when using the laptop without a windows mouse explore 'restore down' at random.

    I found a thread on the site of the Internet USER who said that if his past not with a mouse, it may need tracker drivers up-to-date.
    You can also consider its under warranty.
    Any ideas anyone?

    Hello

    It s a bit confused what you´ve writes down. What do you mean exactly, where´s the problem and what you want to tell us when writing:

    > and when using the laptop without a windows mouse explore 'restore down' at random.
    >
    > I found a thread on the site of the Internet USER who said that if his past not with a mouse, it may need tracker drivers up-to-date.

    Whereas it should be, where´s now the problem?

    Please give clear and understandable feedback, then I and other users you could point to the solution.

    THX

  • Single line vertical when using the ADF to Scan or copy on HP Officejet Pro 8600

    Printer HP Officejet Pro 8600 Premium (CN577A)

    OS: MS 7 64-bit

    When you use the ADF for my printer HP CN577A Officejet Pro 8600 Premium, I get a single vertical line on the document which is produced. This occurs when copying or scanning, both black and white and in color. If I scan or copy using the glass, I do not get the vertical line.

    I already tried troubleshooting.  I unplugged the printer, left without electricity for several minutes; that didn't fix the problem.  Then, I cleaned the rollers and glass; I always get the vertical line, but only when using the ADF.

    My firmware version is up to date (CLP1CN1150CR).

    What should I check next?

    The only difference between the ADF and scanning flat, from a point of view of the scanner is there on the glass, it happens.  I suggest you get a bright flashlight and examine the corresponsing area hence is the line, it's almost certainly a spot on the strip of thin glass which is being just in the right place.

    I've seen some people suggest that put a flashlight almost parallel to the Strip, it shines from the bottom can highlight the area problem.

  • Use the PXI-2630 terminal block in a matrix configuration?

    My apologies in advance for the length of this post!

    I use the PXI system with PXI-2530 switch modules, related to a series of USE with PXI-2632 (1W matrix 8 X 16) connector blocks and a PXI-4071 DMM for each switch module. My request, uses the PXI system for measurement of current and voltage external to verify and/or benefit from restraints of reliability. A requirement of the application, therefore, is that there must be a ride from DC through each USE with change of the minimum impedance as the application between its "bypass" mode switches and its mode 'measure '.

    I used this Setup with connector blocks of matrix in conjunction with one of our test systems, and I am satisfied with the results. I started working with the Test System, has no easy connection to catch HAD, I needed to build a kind of interface the PXI system and a resistive faced load HAD, it was not difficult to build in the wires that attach to the Terminal screw of the 2632. He did turn into a nest of a coded son rat I did my best to keep clean and tidy in different bundles, however. Fortunately for the cable fasteners!

    My next task is to use this application with system B Test, which has an interface of pines buck header with which each signal that goes to or from the DUT can be obtained. No welding or pass the wires through the openings where the designers have no intention of son to be stuffed. I intend to build a break-out Board that allows simple connections between the modules PXI and the number of Test B system which we have or will have in our laboratory. In order to simplify the configuration/installation, I want to reduce the number of connections to terminal block screw. Preferably, I would like to completely remove the screw terminals and use lever-based connections where I can't have mating of the headers. The PXI-2632 terminal blocks unfortunately use Terminal screw.

    In matrix mode 8 X 16, the closing of the PXI-2530 switch kcom1, 3, 5, 7, no matter what points in the array are connected. A link between the row of right and column C is done by closing the switch corresponding to k (16R-C). I checked using the Soft Front Panel.

    I also have a number of connector PXI-2630 blocks. These are intended to be used with the switch module in one of its MUX modes and include 8 banks of connections of the header 2 X 9 pins. In the the 2530 documentation and 2630, I identified that switch k-x is associated to chX output pin, ch0-15 related to the pins 1-16 from Bank 0, C16 - 31-associated pins 1-16 of Bank 1, etc.. X = 16 B + P-1. PIN 18 of each bank is used for independent MUX topology comX. Pines multiplexes sixteen seem to correspond to the sixteen columns of the matrix, with eight common lines corresponding to eight lines.

    Here's what I would do, but I would like to ping the forum to see if anyone tried something similar and wisdon to share the thought:

    • Make custom cables which connect the pins 1-16 of all eight banks 2630's header with a single Ribbon connections 16 son carrying the signals emitted by the interconnected banks (poles!).

    • The custom cable bundle will also include a wire connected to the pin18 of each of the eight banks (line connections!)

    • 24 total wires in the harness will end in the header connections who will probably partner by the lines that I currently connect to each object to be measured.

    • Make additional harnesses that interface with the Test System B header pins.

    • Make a map of derivation using band Council or a similar material to provide header pins to connect the two above custom cables and allow the connection of other elements such as resistors using Terminal level.

    I checked this concept using the Assembly of 176 pins four terminals, like a bunch of little pieces of wire and cable. Are there other issues that I have to configure, such as the elements of a terminal that establish physical components of the switching topologies? The bowels of the PXI-2632 provide more features than the interconnection of the sets of eight sixteen pins? The bowels of the PXI-2630 connect elements that do not allow my proposed scheme?

    I appreciate the suggestions and all entries!

    Thank you

    Jeff Zola

    Hi Jeff,

    First a correction to my previous post: 2632 Terminal has no reed relay protection resistors as I said earlier. The resistance that you were referring to the 2632 and those that I confused, is there to connect the columns of the switch. Resistances have a resistance value zero and act as the electrical connections. The 2632 connects columns c0 to c16, c17 c1, c2 to c18 and so on. Switch cards 2531 and 2532 have the protection relay reed on board resistors.

    As for resistance in the map that protect the reed relays, they are generally very low and do not significatly affect even small tensions that pass through the switch. The resistance won't affect all currents in the map. Any effect that the resistors have on tensions will be with the precision of the switch card specifications.

    Thus, to address the other issue in your post, there is no resistance in the connectors because they are not necessary.

  • OfficeJet Pro 8600: Officejet Pro 8600 leaves black lines on docs scanned when using the document feeder

    This is the second HP Officejet Pro 8600 I had - one was replaced by HP, after that the same issue arose.  I tried to clean the entire unit, but we still get a thin black line running vertically down the page.  This line is divided into sections of 1 "and 2.5" in length.  Sometimes I get the fine line and then almost a shadow line that is parallel.

    Any suggestions would be very appreciated I have scan documents to PDF format and it's hassle to put everyone on the flat for scanning.  I use the charger of the doc on a daily basis and wonder if this could have something to do with the lines.

    Thanks for any help.

    The question is a spec on thin (~ 1 "wide) glass to the left of the main bed scanner.  Clean this area as described in this document.  It can be difficult to see the affected area, a bright flashlight which is held at an angle to the glass can help find the place.  Even a very small spec on the glass can cause a black line when using the ADF.

  • When using the docking station when my laptop can connect USB. printer, etc... ? I know that I can connect my laptop to a docking station.

    When using the docking station when my laptop can connect USB. printer, etc... ? I know that I can connect my laptop to a docking station.

    When using the docking station when my laptop can connect USB. printer, etc... ? I know that I can connect my laptop to a docking station.

    Hello

    With Docking Station, you can connect all the cables for printer, keyboard and mouse, adapter directly to the charging station.

    So whenever you use a laptop, you have just dock the laptop on the docking station and not need to re connect all cables again.

    This will help you when you move frequently with the laptop.

    Docking station will save your time, outside any other aspect, that it has to offer.

    Zaki.

  • OfficeJet pro 8600 print a single vertical black line when using the charger

    OfficeJet pro 8600 print a single vertical black line when using the charger

    Hi @realestatejeann,

    I see that you have found one black vertical line when using the ADF. With a few steps, we should be able to solve this problem.

    Make sure that the printer is connected directly to a wall outlet. (do not use a hub or a surge protector) This ensures that the printer is full on and can help this situation.

    Here is a document for the cleaning of the glass Strip and the underside of the scanner cover.

    Vertical stripes, lines or streaks on Copies, faxes or scans.

    If you need help, let me know.

    Good day!
    Thank you.

  • disable the touchpad when using the mouse?

    How to disable the touchpad when using the mouse?

    Hello

    Please contact Microsoft Community.

    Most laptops have a function key (FN) which can be used in combination with other keys for example FN + F2 or FN + F7 to disable or enable the touchpad.

    You can also disable the touchpad in Device Manager.

    To disable the touchpad in Device Manager, follow these steps:

    1. Click Start.
    2. In the start search box type devmgmt.msc, and then on enter.
    3. In Device Manager, expand mice and other pointing devices and locate the touchpad.
    4. Right click on the touchpad and click on the disable option.

    Following the steps above should help you disable the touchpad.

  • Excel crashing, freezing when using the spreadsheet

    Original title: Excel 2013 file size.

    Hello. I'm having a problem with Excel crashing, freezing when using the spreadsheet. I work on a PC with WINDOWS 7 SP1 64-bit, through a server that is running Microsoft SERVER 2013, WINDOWS 7 PRO 64 BIT SP1. We use 5 PC via all current server running the same version of operating system that use the spreadsheet and in most is used only by 3 PCs anywhere, anytime, even if EXCEL is not on the server, it is running locally on the PC.

    My guy TI tell me the spreadsheet while working on too big to 2 k! They keep asking us to reduce the size and to separate the workbook to solve the problem. Personally I don't believe a Word, we do not use formulas etc just cells with digital text and the alphabet.

    Now last year on the advice of our computer SCIENCE company, we have been advised to upgrade our server and our PC because terminals that they were getting their limit of operation which I accepted. These have been updates middle of last year.

    On this basis, I believe that society COMPUTER trying to throw dust on my eyes as I do not think that they provided the wrong material and are unwilling to admit it.

    Counsel on the question worksheet would be great I need to come back with some kind of evidence in support of my way of thinking.

    I hope that makes sense, I know a little but not professional!

    This issue is beyond the scope of this site (for consumers) and to be sure, you get the best (and fastest) reply, we have to ask either on Technet (for IT Pro) or MSDN (for developers)
    *
  • Hello! My question is, why so many photoshop is making selection when using the quick selection tool, before that it was unable to myself. Can someone tell me aolucion, please. Thank you!!

    Hello! My question is, why so many photoshop is making selection when using the quick selection tool, before that it was unable to myself. Can someone tell me aolucion, please. Thank you!!

    Hi Axe_Juan,

    Could you please let me know the version of Photoshop installed on your computer?

    Also you want to State as Photoshop not to do a quick selection?

    If so, then head over to the Photoshop preferences, then the performance tab and click on 'Big and flat', restart Photoshop and then use the selection tool.

    If something else, please let me know.

    Kind regards

    Tanuj

Maybe you are looking for