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

Tags: NI Software

Similar Questions

  • Qosmio G20 error message: problem with the cooling system has been detected

    I'm trying to fix a Qosmio G20 (which is about 3 years old, it is no longer in warranty).

    Error message: Warning: a problem with the cooling system has been detected.

    I managed to remove the outer case and observe the operation of the machine, and basically one of the fans does not at all. The fan which is closest to the power connector seems to work very well (he seems to be turning a lot, do not know if this is normal), but the other fan who does not seem to move at all.

    When I put in place the case and on the machine, I noticed after a few minutes the vent of the fan working heat sink had warm enough, while led the non-working fan remained cool.

    I cleaned the fan from dust and have also changed the BIOS battery mode mode high performance, but the problem still exists.

    I would be grateful if someone could give advice if the problem is the fan or something else.

    If the fan is the problem, where I can buy a: i live in the United Kingdom?

    Hello

    I think there might be something wrong with the cooling module and the replacement would be necessary.
    Usually, this should be done by an authorized provider (ASP) in your country.

    Technicians could replace it with a new part and also could renew the thermal grease which is placed between the module and the CPU cooling.

    So contact the ASP in your country and ask for later handling.

    By the way; also, you can buy the cooling of the ASP module!

    Good luck

  • Satellite C660D - a problem with the cooling system has been detected

    My laptop is a * Toshiba Satellite C660D-11th * and I have a message that keeps coming up every once in a while 'alert system' head and reads as follows: "WARNING: a problem with the cooling system has been detected." (Next line) Please, turn off computer immediately and return it for service. »

    I had this warning for the coming weeks and it tolerated, but it worsened and annoyed me for the last time. I can hear the fan and the computer is not over heating (the CPUCool freeware tool detects a 51º CPU temprature C). No further questions arise as the computer slows down, it is right in the path of what I do, like typing right now.

    I tried to solve the problem by changing the "Power Options" in the control panel of Windows 7 'High Performance', and then selected under the 'battery' both 'Sector' columns, 'Never' for the parameter "put the computer to sleep. It seems to work, and no error message has occurred since then. However, this is not a solution...

    Please help quickly, this prevents me from working and even other things now.

    Thank you

    Hello

    Usually, this message would appear if something is not wrong with the cooling system. But I read here in the forum that maybe it's a bug of software and after new system recovery this message should no longer appear.

    But if you notice some upper temperature or abnormal noises, then I recommend to check this with a service technician

  • Satellite P500-12D - a problem with the cooling system has been detected.

    Hi there everyone,

    I bought a Satellite P500-12D, which was a return of retail. When I start it up it runs a few minutes and then it appears on the screen:
    WARNING: A problem with the cooling system has been detected. Please, turn off computer immediately and return it for service.

    Follow the health of toshiba CPU is less than 50% temp and if it goes much higher that the cooling fan turns on and it lowers down and the fan stops again, I noticed that only the fan works r/h to cool the cpu, both should come together? What is a software problem?

    TThe unit is new without even the plastic off the surround screen or webcam. Any help or even point me in the right direction would be much appreciated, gary

    Hello

    Which program gives you this error message about the cooling system?

    Before contacting a service partner, as you can read in the error message, you must clean the cooling system using a jet of compressed air. Maybe dust blocking the fan or something else. Of more to clean up it of not necessary to disassemble.
    Here is an article on this topic: [how to clean a Toshiba laptop cooling system? | http://forums.computers.toshiba-europe.com/forums/ann.jspa?annID=40]

    If it doesn't help, contact the nearest service partner.

  • Satellite U500 - problem with the cooling system has been detected

    I have a Toshiba Satellite U 500 series, and I just got a message saying "a problem with the cooling system has been detected. Please turn off the power immediately and return it to service.
    Before that, I would like to know if anyone has had this problem and if there is a software solution?
    HIERARCHICAL

    Check HERE to see if anyone else had this problem in the past.

  • Satellite A40 - attention: problem with the cooling system has been detected.

    Hello guys,.

    From time to time, I get the following message is displayed:

    WARNING: a problem with the cooling system has been detected Toshiba
    Please turn off computer immediately and return it for service.

    I have Windows XP on it.
    I opened the cooling fan and clean it. Of course, I found it dirty rally.
    But still, I get this message!
    What should I do?
    I live in Northern Germany.

    Any advice is welcome and thanks in advance.

    Ibrahim

    Hello

    The message says it all!
    In this case you should contact the service provider authorized in your country!

    > I opened the cooling fan and clean it. Of course, I found it dirty rally.
    Eventually, the cooling modules don t like needs and that is why the message again!

    Nothing to my friend... you need help laptop technician

  • Developer SQL 2.1: problem with the dialog box to change the display

    I am running Version 2.1.0.63 on Windows XP SP3.

    When I open an existing view and make changes in the change display dialog box and then click on the button OK the dialog box remains open and the view is not changed.

    This user has Create View privileges and can run CREATE or REPLACE the sql statement to change the view. The same view of edition having the same user works very well in Version 1.5.3.

    Someone else has a similar problem?

    Thank you.

    It's a bug, the following exception is raised:

    Exception occurred during event dispatching:
    oracle.javatools.db.ddl.UnsupportedDDLException: Cannot update VIEW MADREMIA with the given changes using ALTER statements.
            at oracle.javatools.db.ddl.DDLGeneratorImpl.getUpdateDDLImpl(DDLGeneratorImpl.java:480)
            at oracle.javatools.db.ddl.AbstractDDLGenerator.processResultSet(AbstractDDLGenerator.java:148)
            at oracle.javatools.db.ddl.AbstractDDLGenerator.getUpdateDDL(AbstractDDLGenerator.java:110)
            at oracle.javatools.db.ddl.DDLDatabase.appendUpdateDDL(DDLDatabase.java:661)
            at oracle.javatools.db.ddl.DDLDatabase.updateObjects(DDLDatabase.java:556)
            at oracle.ide.db.dialogs.CascadeConfirmDialog.updateObjects(CascadeConfirmDialog.java:111)
            at oracle.ide.db.panels.TabbedEditorPanel.commitToProvider(TabbedEditorPanel.java:357)
            at oracle.ide.db.panels.TabbedEditorPanel.onExit(TabbedEditorPanel.java:246)
            at oracle.ideimpl.db.panels.TraversableProxy.onExit(TraversableProxy.java:62)
            at oracle.ide.panels.TDialog$L.vetoableChange(TDialog.java:104)
            at java.beans.VetoableChangeSupport.fireVetoableChange(VetoableChangeSupport.java:335)
            at java.beans.VetoableChangeSupport.fireVetoableChange(VetoableChangeSupport.java:252)
            at oracle.bali.ewt.dialog.JEWTDialog.fireVetoableChange(JEWTDialog.java:1472)
            at oracle.bali.ewt.dialog.JEWTDialog.dismissDialog(JEWTDialog.java:1502)
            at oracle.bali.ewt.dialog.JEWTDialog$UIListener.actionPerformed(JEWTDialog.java:1894)
            at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
            at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
            at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
            at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
            at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
            at java.awt.Component.processMouseEvent(Component.java:6263)
            at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
            at java.awt.Component.processEvent(Component.java:6028)
            at java.awt.Container.processEvent(Container.java:2041)
            at java.awt.Component.dispatchEventImpl(Component.java:4630)
            at java.awt.Container.dispatchEventImpl(Container.java:2099)
            at java.awt.Component.dispatchEvent(Component.java:4460)
            at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4574)
            at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
            at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
            at java.awt.Container.dispatchEventImpl(Container.java:2085)
            at java.awt.Window.dispatchEventImpl(Window.java:2475)
            at java.awt.Component.dispatchEvent(Component.java:4460)
            at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
            at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
            at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
            at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:178)
            at java.awt.Dialog$1.run(Dialog.java:1045)
            at java.awt.Dialog$3.run(Dialog.java:1097)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.awt.Dialog.show(Dialog.java:1095)
            at java.awt.Component.show(Component.java:1563)
            at java.awt.Component.setVisible(Component.java:1515)
            at java.awt.Window.setVisible(Window.java:841)
            at java.awt.Dialog.setVisible(Dialog.java:985)
            at oracle.bali.ewt.dialog.JEWTDialog.runDialog(JEWTDialog.java:395)
            at oracle.bali.ewt.dialog.JEWTDialog.runDialog(JEWTDialog.java:356)
            at oracle.ide.dialogs.WizardLauncher.runDialog(WizardLauncher.java:55)
            at oracle.ide.panels.TDialogLauncher.showDialog(TDialogLauncher.java:225)
            at oracle.ide.db.dialogs.BaseDBEditorFactory.launchDialog(BaseDBEditorFactory.java:623)
            at oracle.ide.db.dialogs.BaseDBEditorFactory.editDBObject(BaseDBEditorFactory.java:368)
            at oracle.ide.db.dialogs.AbstractDBEditorFactory.editDBObject(AbstractDBEditorFactory.java:332)
            at oracle.ide.db.dialogs.BaseDBEditorFactory.editDBObject(BaseDBEditorFactory.java:54)
            at oracle.ide.db.dialogs.AbstractDBEditorFactory.editDBObject(AbstractDBEditorFactory.java:314)
            at oracle.dbtools.raptor.navigator.DatabaseNavigatorController.editObject(DatabaseNavigatorController.java:470)
            at oracle.dbtools.raptor.navigator.DatabaseNavigatorController.handleEvent(DatabaseNavigatorController.java:308)
            at oracle.ide.controller.IdeAction.performAction(IdeAction.java:531)
            at oracle.ide.controller.IdeAction.actionPerformedImpl(IdeAction.java:886)
            at oracle.ide.controller.IdeAction.actionPerformed(IdeAction.java:503)
            at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
            at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
            at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
            at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
            at javax.swing.AbstractButton.doClick(AbstractButton.java:357)
            at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1225)
            at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:1266)
            at java.awt.Component.processMouseEvent(Component.java:6263)
            at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
            at java.awt.Component.processEvent(Component.java:6028)
            at java.awt.Container.processEvent(Container.java:2041)
            at java.awt.Component.dispatchEventImpl(Component.java:4630)
            at java.awt.Container.dispatchEventImpl(Container.java:2099)
            at java.awt.Component.dispatchEvent(Component.java:4460)
            at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4574)
            at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
            at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
            at java.awt.Container.dispatchEventImpl(Container.java:2085)
            at java.awt.Window.dispatchEventImpl(Window.java:2475)
            at java.awt.Component.dispatchEvent(Component.java:4460)
            at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
            at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
            at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
            at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
            at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    

    Bug 9199263 has been filed for this, but apparently it wasn't a showstopper for the production. It may be set in one of the upcoming patches...

    Kind regards
    K.

  • I have a problem with the external hard drive not detected on the computer as a disk.

    I connected an external hard drive toshiba via USB on this victory 8 x 64 computer that is also a toshiba and the computer doesn't show as a reader in fact it shows that he as a device so what gives. This thing have not even a letter such as C: (what internal hard drive) I watch the little arrow to show you, it is prudent to remove it so it appears here, what does I have a drive bad ext or what? Oh yes, I have tried all my ports even

    Hello

    I suggest you to assign a drive letter for the external hard drive and see if it helps.

    To do:

    a. press the Windows key + R and type diskmgmt.msc.

    (b) if the hard drive recognized in disk management and if there is no drive letter assigned, I suggest you do a right click on the drive and assign a drive letter and check if it helps.

    c. right click paths and the drive letter Change.

    Do one of the following:

    ·         To assign a drive letter if it has not already received, click Add, click the letter you want to use and then click onOK.

    ·         To change a drive letter, click change, click on assign the following drive letter, click the letter you want to use and then click on OK.

    d. restart the computer and check.

    Hope that the external hard drive will not be detected after that.

    Please report if you encounter any problems related to Windows and we will be happy to help you.

  • S50 satellite - B - 15U problem with the cooling system has been detected.

    Hello

    I bought a Satellite S50 - computer laptop B 15U and have installed Windows 10 - it seems to work ok but the above message appears asking regularly return for repair. I can hear the fans walking up and down though the window of the pc health monitor does not reflect this but shows the cpu temperature to approximately 45%.

    This really should go back or is there a setting somewhere or firmware update?

    In order to encourage some answers, I would add that I loaded the last BIOS 2.00 successfully and also uninstalled and reinstalled the monitor integrity of Toshiba. I was wondering if this alarm is generated by the health monitor utility and might be a bug in the software as the fan chart sometimes does not work and it was then that you seem to have the alarm. To reiterate that the fan seems to need.

  • Satellite A660 - message: WARNING: a problem with the cooling system

    My laptop recenly started giving the error "Warning: a problem with the cooling system has been detected." Please turn off computer immediately and return it for service"- Yes the fan had stopped working and touchpad area was hot.

    So I take it on the type of service (toshiba) and must answer for fan, Mo, HARD drive, he said. Is this possible? -J' I have extended warranty, but is ' t it much? not to mention that it takes a month to get things down.

    He also mentioned that I could use the machine with a cooling pad until then if I wish.

    Any feed back?

    > Yes the fan had stopped working and touchpad area was hot.

    In this case, there is really a hardware problem.
    But I m wondering why he should replace the HARD drive and the motherboard
    Perhaps only the cooling module began at malfunction of course this is just a speculation
    If the technician has checked the material, then they need to know what parts are not OK.
    So don t think you have no choice.

    But the guarantee is valid for all is free

  • Qosmio G10 - a problem with the cooling system

    Hello

    Put on my G10-100 this morning and got the following message:

    "A problem with the cooling system has been detected. "Please turn off immediately and the return of serve.

    My other machine running and connected on toshibas website and found the number of support.

    After which left a message there, the automaton response was "we aim to get back to you within the hour," Needless to say, it's now 6 hours later.

    I can't find whether on the web or in these forums, has anyone encountered this before?

    I'm still in my 1 year warranty, but he soon run out.

    Thank you
    James

    Hello

    This looks like a problem of overheating on your device.
    In this case, you must contact the ASP.
    I don't know if it's a phone number just to post you but please visit this m link:

    http://EU.computers.Toshiba-Europe.com/cgi-bin/ToshibaCSG/generic_content.jsp?service=EU&ID=ASP_SUPPORT

    You will find a Toshiba service partner who is responsible for your country.
    It should help you to solve this problem

    Good bye

  • Error message "A problem with the cooling system" on Satellite A660

    Hi all

    Hope I can get help here. I got about 5 laptop computers HP after each of them had problems and errors. I got sick of them and so got a refund and bought a high spec A660-1FH.

    The A660 is a great laptop for two days until yesterday when I started having a saying of warning message "a problem with the cooling system has been detected. Please turn off the power immediately and return it for service "."

    The cpu fan works fine you can here it turns and the temperature of the processor i5 - 460 m is around 40 degrees for two hearts - that seems normal to me. I noticed that this happens only when running on battery, and if you switch from eco utility to the power saving mode. Its fine when running on the "balanced" power setting The fan is louder before when this message appears.

    Like its less than 28 days my retailer swapped it for a brand new immediately. Got a new home page, and the same message reappears. Everyone knows this. Like two laptops had this, I was wondering if it is normal that the laptop A660 series or if it was really a hardware problem?

    I tried to update the eco utility and the bios of the laptop, but the two are the latest versions. Can someone help or share if they have a similar problem with their laptop?

    Thank you

    In front of me, I have Satellite A660-13 q (PSAW3E) and I have about 6 weeks now. It works almost 10 hours a day and so far I didn't notice this message or anything that may be suspect for the operation of the equipment.

    I put really know why this happen on your laptop and don t think that there is nothing you can do about it.
    I would trade it again. What you can also try is to contact the closest service Toshiba. Make a call, explain the situation and ask if they can help you with this.

  • Problem with the generation of multi-sinus wavefrom of random phase using PXI-5412

    Hello

    I am trying to generate random phase multi-sine waveform using the PXI-5412 14 bits 100 M/s AWG on LabVIEW8.0.

    The version of LabVIEW8.0 for the PXI-5412 comes with a sample VI on multi-tone waveform generation. When I tried with a different combination of frequency and amplitude, there is no problem with the sample VI.

    Because I need the phase to be random for each frequency component, I had tore the tone cluster containing 3 elements, i.e. frequency, amplitude and phase, which feeds the generator of signals, and rebundle the cluster with elements of reading a CSV file by using a loop, a fixed value amplititude and a number of random phase of the frequency generated by a random number (formula lournies elements (: pi - 2pi x r). When the waveform multi-sinusoidale generated on the PXI-5112 100 MHz Digital Oscilloscope, it was pointed out that the waveform would change with the tested frequency range.  However, the amplitude of the wave is always ~1.4V (guess that's always default to 1 V x sqrt (2)).  There is no question also when testing the same combination of frequency and amplitude by using sample VI without modification.

    Please find attached the VI of the sample, snatching up to the version and the CSV file I used. Is there something wrong with the table 1 d of the cluster of 3 elements that I built and assembled causing the signal generator to ignore the value of input amplitude and, possibly, the input value of the same phase (as it seems that the amplititude is always set to the default)?

    The other question that I found on the two sample VI and ripped version is on the news of sampling.  The waveforms appear on digital Oscilloscope PXI-5112 always default to 10 cycles no matter how changed the sampling frequency and the number of samples.  For example, if the frequency is 10 Hz, sampling frequency is 1000 Hz, and I put the number of samples to 10000.  I'm supposed to get 10000/100 = 100 cycles.  However, I could see 10 cycles no matter how, I changed.  What should be the correct way to change the number of cycles?

    Really appreiciate your help and advice. Thank you.

    1 phase unit is in degrees (-180 to 180), no - pi pi.
    2 standardize Waveform.vi always normalize your amplitude of the signal. You can remove it to use your desired amplitue, but must make sure that it is not above 5412 spec.

  • I have a problem with the DVD drive not detected on Windows 7.

    I built a new PC (I've built a few of them).  This time is not considered my ASUS BD player with Windows 7 DVD burner.  It is not in either Device Manager just do not at all recognized.  The BIOS for the ASUS P9X79 of luxury see the SATA drive without problem.  Sometimes after restarting the BD Player looks and functions perfectly, but when the computer goes to sleep or shuts down is usually not there when it is restarted.  Please help me solve this problem :-)

    Original title: optical drive not recognized...

    Hello

    Please contact the Microsoft Community.

    You have a problem with the driver DVD being missing on the computer. It can be difficult when something that is important to you does not work as expected. It's pretty simple and we're here to help you solve the problem. We work as a team and get this sorted out.

    Please answer these questions-

    (1) that you get an error message or error code?

    (2) did you have performed the steps in troubleshooting?

    (3) have you made changes on the computer before the show?

    I would like more information about the issue.

    Method 1-

    I wish that you are running the fixit-

    Hardware devices do not work or are not detected in Windows

    http://support.Microsoft.com/mats/hardware_device_problems/en-us

    Method 2-

    Note: Important This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs.
    Back up the registry - http://windows.microsoft.com/en-US/windows7/Back-up-the-registry

    I would have you look at the article-

    Your CD or DVD drive is missing or is not recognized by Windows or other programs

    http://support.Microsoft.com/kb/982116#top

    Let us know if you have other questions about Windows in the future. We will be happy to help you. We at Microsoft, strive for excellence and provide our customers with the best support.

    Thank you.

  • Satellite U300-13U - iTunes has detected a problem with the audio configuration

    Please can someone help me? I have a laptop U300-13U and that you have installed iTunes on it. However, when I open iTunes I get an error message saying 'iTunes has detected a problem with the audio configuration and may not play correctly' which is an understatement - it does not at all!

    I uninstalled, reinstalled iTunes and Quicktime, but in vain. I have searched and exhausted the iTunes support boards but have nowhere either. The sound is fine as I can read CDs with no problems at all. The only suggestion I can get is that there may be a problem with the audio device magnet is not Apple and vice versa.

    Does anyone have AN idea at all as to what might be going on here? I'm completely out of my depth, I'm just a simple girl who wants to play his music!

    Thank you so much.

    Hello

    I don t use iTunes so I m not an expert player but first of all, you must give us some important information:
    -What operating system do you use?
    -Are you using the factory settings (Toshiba Recovery disk) or your own version of Windows
    -Do you have the yellow exclamation marks in Device Manager?

    OK, iTunes says that there is an audio configuration problem so do you trying to update the audio driver? If this isn't the case, you should try it.
    See the Web from Toshiba site for an update and see what happens. Then validate your result:
    http://EU.computers.Toshiba-Europe.com-online decision-making supported Downloads & => Download drivers

    Welcome them

Maybe you are looking for

  • by using first call? in LVOOP

    Experts LVOOP, I am completely green when comes to classes from LV, but seeks to understand them. Is it possible to use the first call? primitive inside a method static shipping VI? It seems to work very well when I have a single instance of my class

  • WHO HATES THE IPHONE

    I HATE THE IPHONE. Yes, it has some interesting features like siri, but google will come out with a like siri. It is the dso borring so all you do is scrolled pages and pages of apps, that you can't even get widgets. and they coppied android with unr

  • SmartScan 5520 is more the HP scan on OSX 10.7

    I have a HP Smartscan 5520 and it worked very well, even earlier today.  Now, however, whenever I try to scan a document, I get the error message "Unable to log on." I tried to reset the printing system as suggested here - https://discussions.apple.c

  • Can you make a password reset disk to another computer.

    Problems with my password and did not have reset disk.

  • BlackBerry app Push Notifications using PushWoosh does not receive notifications when closed and in the background

    I'm developing an application of crossed with phonegap and Jquery mobile platform. I'm trying to implement push notifications for the blackberry application using PushWoosh. I noticed that I'm not able to receive notifications when the application is