Installation of RT for PXI 6534

I'll put up the PXI-6534 in RT and when I run in the test Panel, I get an error like this:

Error-50352 occurred at the test Panel

Possible reasons:

The requested memory could not be allocated.

Does anyone know how to fix this?

Hey j,

Some basics to cover, is something else using the card now as a VI or application? You have reset your card?  Have you tried to reinstalled DAQ on your controller?

Tags: NI Hardware

Similar Questions

  • 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

  • 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.

  • my PC Backup, Reg Clean Pro & Research protect all piggyback on my Installer Firefox 26, for which I had to replace my Norton caveat regarding security issues.

    my PC Backup, Reg Clean Pro & Research protect ALL grafted onto my Installer Firefox 26, for which I had to replace my Norton caveat regarding security issues.

    Based on your research, I also substitute a Norton Security warning.

    I have windows 7 and complete Norton Security

    You downloaded firefox from the official site. Sometimes the software gets supplied with malware or adware, as in your case.
    In some cases, I recommend uninstalling (your software also mentioned), FF data directory deleting and then reinstalling FF of mozilla.org

  • Satellite U400 - 138 (PSU44E) - order of installation of drivers for Windows XP

    Hello
    I have the Satellite U400-PSU44E. I had to install Windows XP Professional. Under XP I have problem with installing the drivers. I downloaded Windows XP drivers from the Toshiba web site.

    What is the correct order of installation of drivers for this model?

    Best regards

    Hi mido_92,

    I can give you the order of installation of my Satellite U400 installation and it worked:

    Windows XP SP3
    Windows updates
    Sun Java 2 Runtime Environment
    Intel Chipset driver
    Intel driver
    Audio driver Conexant CX20561
    Driver LAN Marvell 8040/8055
    Synaptics Touch Pad Driver
    Alps Touch Pad Driver
    Conexant Modem driver
    Modem region Select utility
    Intel Wireless LAN driver
    or
    Atheros Wireless LAN driver
    or
    Realtek RTL8187B Wireless LAN Driver
    Chicony camera software
    Bluetooth Stack for Windows by Toshiba
    Software/driver of fingerprints
    TOSHIBA common modules
    TOSHIBA SD Memory utilities
    TOSHIBA ConfigFree
    TOSHIBA Assist
    TOSHIBA Speech System
    CD/DVD Drive Acoustic Silencer
    Toshiba HDD Protection
    TOSHIBA PC Diagnostic Tool
    TOSHIBA Touch ED
    TOSHIBA Hotkey Utility
    TOSHIBA utility
    TOSHIBA control utility
    TOSHIBA Power Saver
    Toshiba zooming Utility

  • PXI-6534 replacement by SMU-6537

    I am currently ordering and receiving data from a device to measure with the PXI-6534, LabVIEW and DAQmx on Windows.

    Can I replace the PXI-6534 by an SMU-6537 without having to change anything to my hardware (will be in other words, the cable connections and advice sheet be compatible)? If so, the code written to communicate to the PXI-6534 will be reusable with the SMU-6537?

    Thank you comments or pointers.

    X.

    I'm really sorry, but I forgot to mention in my previous post that there is indeed an adapter that will allow you to use the same block that you used with the PXI-6534. You can find more info on this adapter cable on this link:

    http://www.NI.com/PDF/manuals/374435a.PDF

  • programming for PXI-6071e with SCXI1125

    Dear all,

    I connected the SCXI-1001 chassis with card Conditioning SCXI-1125 and SCXI-1327 block with PXI-6071E PXI-8176 with SH1006868 cable controller card. I chose the SCB-100 for PXI-6071 accessories, as there is no option to select SH1006868. I connected the Thermocouple on the SCXI-1327 block terminals.

    I am new to LabView, can someone guide me how to program. If anyone have example program, it will be useful to start learning

    Thanking you

    Concerning

    -Vishnu

    I don't think that you can select your accessory cables. Only the blocks for DAQ cards will be available on your list. Instead of the SCB-100, you can select the terminal box 1327? For starters, labview has a number of application examples. Go to the Help menu and select 'Search examples' then search for thermocouple. There should be examples on how to acquire tension of a thermocouple, graphic of your data readings, etc..

  • Many DAQ cards synchronize hardware for PXI

    I recently went through the process of getting several PCI DAQ cards in a computer and synchronize them together using a RTSI cable.  I just bought two similar cards in PXI.  I had to add a RTSI cable DAQmx devices manually in the measurement and automation software, and connect the cable with the PCI cards.  I want to just make sure that I don't have to do the same with the PXI cards because there is no necessary RTSI cable for PXI.

    Thanks for any help,

    Mike

    The PXI chassis has backplane triggering and clock lines so that you don't need the RTSI cable.

  • How can I work around 643 error during the installation of update for Microsoft XML Core Services 4.0 Service Pack 2 (KB973688)?

    If I use automatically via Windows Update or installation manual, installation of update for Microsoft XML Core Services 4.0 Service Pack 2 (KB973688) always fails with error code 643. Windows Update Troubleshooter can't find anything wrong.

    Error code 643 take a look at this thread as it relates to this issue.

    Mike - Engineer Support Microsoft Answers
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Every time I open a file in Media Player 11, I get a dialog box telling me that Windows Installer is "preparation for installation.

    Whenever I open a file in Microsoft Media Player 11, (11.0.5721.5280) I get a dialog box telling me that Windows Installer is "preparation for installation.

    He tell me what it is trying to install and crashes

    No media plays back.

    Cancellation does not - it retrys with encouraging them. The only way to get rid of the dialogue is Ctrl/Alt/Del and end task. It also closes WMP11

    SP3 Win XP32

    I just installed Office 10

    I ran the repair of Office 10

    I uninstalled WMP11 and reinstalled

    I ran "Fix IT" page Support MS

    I run MS Security Essentials... It is to this day and I run a full scan

    I think you meant:

    "a. initially, box run, type"msiexec /unreg", and then press ENTER."

    I did and it helped somewhat. Message anyway, but he went and the media played.

    If I did:

    "(b) then type" msiexec/regserver"and press ENTER."

    The problem comes back

    I went a step further and ran a restoration of the system to the day, I installed Office - it worked.

  • LRT224 - how to have a free installation of LAG for the games

    How can I get a free installation of Lag for the games in LRT224?

    I already tried to give "High priority" ports used by games like Dota 2, heroes of the storm, etc., as shown below, but the latency is still high.

    In our previous configuration with DLink LB604, we used the sticky connection and there is no Lag. We sticky Wan1 related game Ports and 2 Wan for Http and Https Ports.

    Is there a way for Linksys have a free configuration of Lag? We use this router now Internet café with 40 customers.

    Please help me how to reduce the latency/Ping times.  Thanks in advance

    If the router of games makes the QOS, then you must disable QOS in the LRA.

    Sorry, Linksys has not approved the agreement of beta tester yet. I'll have an update.

  • I am running vista ultimate SP2 32 bit. I'm unable to complete the installation. Support for koadak says that I need to update my windows install. When I go on the site microst, I don't know that one to download. Help!

    I am running vista ultimate SP2 32 bit.  I'm unable to complete the installation. Support for koadak says that I need to update my windows install.  When I go on the site microst, I don't know that one to download. I am running vista ultimate SP2 32 bit.  I'm unable to complete the installation. Support for kodak says that I need to update my windows install.    Help!

    Update your OS via windows update (start > Control Panel > Security > windows update).

  • I would like to become an installer of 'trust' for any future problems. How can I go about it? Thank you

    I would like to become an installer of 'trust' for any future problems. How can I go about it? Thank you

    You may have permanently damaged your Windows installation, but it is difficult to decide this question, although an online forum such as this.

    You should not have deleted the files of C:\Windows\winsxs\amd64_microsoft-windows-tabletpc (unless you were actually only removing shortcuts).

    WinFix is generally regarded as malware--> http://www.spyware-techie.com/winfix-10-removal-guide

    I don't use Windows Live Photo Gallery (assuming that's what you are referring), so for the best chance of getting help, you should ask a question here--> http://answers.microsoft.com/en-us/windowslive/forum/gallery-files?sort=lastreplydate&dir=desc&tab=threads&status=all&mod=&modAge=&advFil=&postedAfter=&postedBefore=&threadType=all&tm=1460601829025

    Use an object as "Icons of WINSXS in Photo Gallery" and to include a link to this thread--> http://answers.microsoft.com/en-us/windows/forum/windows_7-files/i-would-like-to-become-a-trusted-installer-for-all/488de805-9ca7-4e7c-901f-4b995fe9a6aa?msgId=5890890b-04be-421b-b622-0f839a815360

    While you wait for a reply here, follow these steps.

    Open the Photo Gallery, then click on the 'File' menu (to the left of the 'Home' menu)

    In the menu that opens, click on 'include file '.

    In the window that says "Change how this library brings together its content" (one at a time) select every item other than 'My images' and 'Public Photo' and click on 'Remove' and then click OK.

  • install a video Magnifier mousecam. The installation disk is for windows XP. My PC runs windows 7 and not recognize installation

    I am trying to install a mousecam video Magnifier. The installation disk is for windows XP. My PC runs on windows 7 and will not recognize the .we installation. How can I get windows 7 to recognize the disc

    You can not force the incompatible software to install or work, to visit that manufacturers of equipment/program support site and checks if there is a version compatible win7

  • Painted Windows Trusted Installer, refusing permission for administrator accounts, while trying to change the paper

    Original title: Windows Trusted Installer, refusing permission for administrator accounts

    I have a netbook with Windows 7 starter.

    Trying to change the wallpaper (trivial, I know) I realized that even as an administrator I am blocked for this. I tried to change the permissions of the records, but the options are grayed out.
    Would be interested to know
    (1) if there is a way around that?
    (2) what are the other rights are denied to me although it is my own machine and me being logged as administrator?
    If there is no way this tour without the upgrade of Windows (paid) or switch to Linux (free)?
    Thanks in advance for any help

    Hello

    Method 1, the only option is to upgrade the operating system. Unfortunately there is no alternative workaround.

Maybe you are looking for

  • Question on page reload automatically

    HI -. What does the bar above the average of the page that says "Firefox prevented this page automatically reloading"? I then click 'allow', but the message remains at the top of the page. Is it possible to disable this feature? Thank youRandy

  • Satellite T130 - 13L - Wireless disappeared

    Hi yesterday my Satellite T130 - 13L had it's wireless stop working completely. When I press FN and F8 bluetooth is there, but nothing else. I've looked everywhere and it simply disappeared. So far I found no solution, I've heard it might be a hardwa

  • resize an image in the background of a chart

    Hello world I managed to put a picture in the background by referring to this page: http://digital.ni.com/public.nsf/allkb/FF55BDA8C9F0C0ED862573450053A425 How can I adjust the image, now based on the background of the chart. I mean if I resize the g

  • How can I fix error HPSF.exe for HP support assistant?

    I have a HP Pavilion dv6 notebook.  HP support assistant has stopped working.  I get a message indicating HPSF.exe has encountered a serious error.  How can I fix it?

  • Shutdown (stop) missing when my pc is locked

    When I lock my pc there is no stop button. How can I get the stop to the locked home screen button? I have windows 7.