GPIB-1284CT not responding inside LabView 5

I have installed a GPIB-1284CT GPIB controller in my system. I have followed instructions and substituted the GPIB-32/16.dll in my /windows/system folder.
If I issue a ibfind gpib0 command through the 3.1 software shipped with the device I get a correct answer, but if I try to use the LV 5 software (i.e. the Measurement & Automation control and similars), the controller is not seen by the system.
Similarly, if I issue the ibfind command from inside LV, I do not get an answer.
What steps have I skipped? How should I better configure my system to work transparently from within Labview (I mean seamlessly using also existing software modules)?
Thank you in advance!
Stefano

Dear A.S.,
thank you for your feed-back!
I am actually using Win95 at the moment, with LabView 5.
I have installed the 1.30 version of NI 488.2 and MAX is version 1.0.1 build 27. Doing F5 does not help; the system cannot see any GPIB device installed. It then guides to the troubleshooting wizard, where I am offered in the end to add new hardware from the usual Windows control panel. But I have not been able to find any .inf file for my GPIB interface anywhere, neither on the NI site, nor on the disks enclosed with the GPIB module.
Basically, this sw is intended to work under Win 3.1, but there is no other choice, as far as I can see.
When using Wibic 3.0 and issueing the ibfind gpib0 command I get id=32000 as an answer.
I have also
installed the NI-VISA 2 package (but I am no VISA expert at all...) and from the interactive module, by activating the win32 ibic module, this time I get only error messages when I issue the ibfind command.
I have already followed the instructions given on the documentation and I have installed the compatibility package and substituted the gpib*.dll in /windows/system.
I hope I have given some useful details, in case there is still something missing I will be glad to provide it.
Thank you again for any hint!
Stefano

Similar Messages

  • I hired a commercial artist to create a color image for the cover of a self published book. I want a black and white image for the inside. The commercial artist has not responded to this request. How do I determine the format of the color image, I'm guess

    I hired a commercial artist to create a color image for the cover of a self published book. I want a black and white image for the inside. The commercial artist has not responded to this request. How do I determine the format of the color image, I'm guessing it's Illustrator's formatting but I don't know. How can I find out if Illustrator will open the file and allow alterations? The image opens only in Apple's Pages software?

    rons,
    It seems that all you have is a raster image, presumable PNG24 or JPEG, in RGB.
    It may have been created as raster artwork in Photoshop, or it may have been created as vector artwork with the help of Illy, or as a mixture of vector and raster artwork in either application, or both combined.
    If you just need to have a raster representation in black and white based on the current colour image, you may try this, in a new RGB document (View>Smart Guides are your friends):
    1) File>Place the image (you may tick Link or untick and have it embedded);
    2) Create a rectangle with black fill (R = G = B = 0), at least as large as the image, and place it behind the image (you may ClickDrag with the Rectangle Tool between opposite corners, then Ctrl/Cmd+X+B);
    3) Select all and in the Transparnecy palette flyout click Make Opacity Mask with both Clip and Invert Mask ticked.

  • Labview error GPIB controller not adressed correctly

    I get this Labview error: GPIB controller not adressed correctly (LV5.1, win NT4) when i try to send data to a HP4275A LCR meter. How ever it works on an older system running with LabView 5.0 (also NT)!!!
    How can I get rid of this problem????

    Hi Diego, thanks for the hints!
    I tried to configure (GPIB) everything standard.
    when I try a 488 command initialze, I get the controller conflict, when i don't do this I get atime out problem either by 488 write-command or by 488.2 send-command.
    the differences between the systems where it works and where not are:
    working: Win 95, LV 5.0, GPIB-card/TNT (plug & play)
    not-working: WinNT, LV 5.1, GPIB-card/PCI
    i tried to set baord config to the same parameters...
    on the faulti system however I see the instrument with the MAX and I can send commands, without problems !!!!
    Also the driver you posted does not work (but the NI-communicate program ;-)
    i have no clue what else to do!
    btw. how do I copy the spy output when running the program? I may provide
    this to find errors.
    Since MAX indicates the board is all right I guess it is not necessary to reinstall the boarddrivers?!

  • Problem: Select ActiveX Class Browse... hangs LabVIEW (not responding)

    Can anybody help with this problem...
    When I right click either an "Automation Refnum" (front panel) or an "Automation Open" and click "Select ActiveX Class > Browse..." LabVIEW just hangs and becomes "(not responding)".
    Strangely - if I drop an ActiveX container onto the front panel and right click this selecting "Insert ActiveX Object..." then LabVIEW lists a healthy selection of objects - which indicates that not everything about ActiveX is broke.
    The crash/hang when trying to browse for ActiveX Classes occurs with all three versions of LV I have installed 7.0, 7.1 & 8.0.
    Can anyone help - please.
    Mark.

    I tried it again after to get two screen captures (one with the LabVIEW Not Responsive message), unfortunately it is much faster when browsing after the initial search.  Probably because a list was populated somewhere.  So it's slow the first time...   
    Message Edited by JoeLabView on 11-01-2007 07:23 AM
    Attachments:
    ActiveX-ok.PNG ‏10 KB

  • My JButton inside a JTable cell does not respond to clicks

    I have a Jtable which extends AbstractTableModel and uses an arraylist to fill the data in the model. The first column of this table is my button column. I have a class for my button coumn which is:
    class MyButtonCol extends AbstractCellEditor
            implements TableCellRenderer, TableCellEditor, ActionListenerMy button column class has getTableCellRendererComponent and getTableCellEditorComponent. My problem is that the button shows on the table but it does not respond to clicks. Any help will be appreciated.

    That does not seem to be the problem. I have the method in my class but it still does not respond to clicks. This is my AbstractTableModel class:
    class WorklisttableModel extends AbstractTableModel{
         protected static List<Worklist> transaction;
         protected String[] columnNames = new String[]{" ", "Modality", "Status","Patient name",
                "Patient ID","Date of birth","Study date","Referring physician","Description"};
         public WorklisttableModel(){
             transaction = new ArrayList<Worklist>();
             fillmodel();
          @Override
          public boolean isCellEditable(int row, int column) {
                return false;
          @Override
          public int getColumnCount() {
                return 9;
          @Override
          public int getRowCount() {
                return (transaction!=null) ? transaction.size() : 0;
          @Override
          public Object getValueAt(int rowIndex, int columnIndex) {
              if(rowIndex < 0 || rowIndex>=getRowCount())
                  return" ";
                  Worklist row = (Worklist)transaction.get(rowIndex);
                  switch(columnIndex){
                      //case 0:return "";
                      case 1:return " "+row.getModality();
                      case 2: return row.getStatus();
                      case 3:return row.getName();
                      case 4:return row.getID();
                      case 5:return row.getDOB();
                      case 6:return row.getStudyDate();
                      case 7:return row.getReferringP();
                      case 8:return row.getDescription();
               return " ";
          public Class getColumnClass(int col){
              return getValueAt(0,col).getClass();
          @Override
          public String getColumnName(int columnIndex) {
                return columnNames[ columnIndex ];
          protected void fillmodel(){
              transaction.add(new Worklist("","US","active","Simpson","1232222",new java.util.Date(73,8,12),new Date(18,8,13),"Dr. Francis","Brain"));
              transaction.add(new Worklist("","US","inactive","Dodggy","3498222",new java.util.Date(83,8,12),new Date(16,8,17),"Dr. Francis","Heart"));
              transaction.add(new Worklist("","CT","active","Williams","7892222",new java.util.Date(98,9,5),new Date(19,2,13),"Dr. Evans","Dental"));
              transaction.add(new Worklist("","MR","inactive","Brian","89765412",new java.util.Date(65,5,23),new Date(19,1,18),"Dr. Evans","Brain"));
              Collections.sort( transaction, new Comparator<Worklist>(){
              public int compare( Worklist a, Worklist b) {
                  return a.getName().compareTo( b.getName() );
    }

  • My ipod screen went white, then turned blank and will not respond to the buttons i touch. it is also able to open up now somehow, so i can see the inside

    screen went white, then turned blank and will not respond to the buttons i touch. it is also able to open up now somehow, so i can see the inside

    Let the battery fully drain. After charging for at least an hour try:
    iOS: Not responding or does not turn on
    If not successful time for an appointment at the Genius Bar of an Apple store.

  • Button does not respond (with attachment)

    Hi,
    I'm trying to develop a LV program for a psychology experiment to record a participants mouse movements whilst drawing or tracing a picture using the mouse.
    My program uses an event structure to generate an event each time the mouse is moved or the mouse button is pressed or released. Upon each of these events the coordinates and button position is recorded to an array.
    When they have finished drawing there is a button "Stop & Save" that allows the user to save the coordinate data to a file. This can then be opened by a sister program I'm developing that allows the movements to be replayed and shows where the mouse button was down and up.
    At the start of the program there is the option of loading a background jpeg picture to trace over on the screen.
    The program then waits for a 'Record' button to be pressed before moving on to record all coordinates there after until the 'Stop & Save' button is pressed.
    The problem I have is that the record button does not respond. It doesn't even change state when pressed, even though at that stage it's just sat in a while loop waiting for it to be pressed before moving on to the event structure.
    I attach the program for you to look at.
    Any help/hints much appreciated.
    Thanks,
    Dave.
    Attachments:
    MouseCoordinatesForPW.vi ‏178 KB

    altenbach wrote:
    Your overall program design is higly flawed. This calls for a single state machine with an event structure that handles all FP events. All your locals can be handled by shift regsters. Get rid of that useless stacked sequence!
    Frame 0: Initialization belongs to the left of the state machine. CoordinatesArray should initialize a shift register (no locals needed). Use a boolean shift register to set state to either recording or not. Event for "record, value changed" will switch the boolean to be used on the other states.
    Frame 1: "Clear" and "stop" need to be inside their own events. Running it parallel to the event structure is a no-no! Do you really want to record mouse movements on the entire FP or only on the picture area?
    Frame 2: Why waste an entire frame on this? Here you clear it and in the next frame you prepend the cleared string to your data. Makes no sense.
    Frame 3: An autoindexing FOR loop would be the right choice. A single formating operation can handle multiple values.
    Frame 4: Writing the "coordinate string" seems useless, since you just cleared it two frame earlier. You are writing an empty string to a file! Right? Why invert the "canceled?" output, just swap the cases instead.
    Frame 5: Unecessary! Once the VI runs out of code, the VI will stop automatically. The "stop" function also does not "close the program window" as you seem to indicate with a diagram comment. Check the online help.
    Message Edited by altenbach on 05-22-2007 09:23 AM
    Hi, thanks for your reply.
    The reason for the main stacked sequence was to get some order to the program, my programming background's text based and as such I like to think of a program running in a list/sequence order. LabView seems strange when you've been used to programming in asm or C. Does anyone know of any books or online documentation for people migrating from text languages to LV? - I haven't found any.
    "Frame 2: Why waste an entire frame on this? Here you clear it and in the next frame you prepend the cleared string to your data. Makes sense."
    - The string 'CoordsArray' is cleared to make sure it's empty before chars concatanated to it in the next frame. Call me old fashioned but is it not good practice to clear out any junk in a variable rather than just assuming it's empty?
    "Frame 3: An autoindexing FOR loop would be the right choice. A single formating operation can handle multiple values." - not sure what you mean by that?
    "Frame 4: Writing the "coordinate string" seems useless, since you just cleared it two frame earlier. You are writing an empty string to a file! Right? Why invert the "canceled?" output, just swap the cases instead."
    - No, it's not an empty string since in the previous frame the coordinates array is converted to numbers and concatanated to it. Trust me, it generates a file with lots of data in so no way is it an empty string!!
    - Yes, you could just swap the cases instead of inverting the 'canceled' output but sometimes it reads better to say 'if NOT cancelled then DO theTask, ELSE DO nothing' rather than 'if cancelled DO nothing ELSE DO theTask'. Not sure if that makes sense but I guess it's just personal prefference there.
    "Frame 5: Unecessary! Once the VI runs out of code, the VI will stop automatically. The "stop" function also does not "close the program window" as you seem to indicate with a diagram comment. Check the online help."
    - I wasn't sure how that one would work. I wanted the final exe version to close the program window when the program comes to the end, what's the best way to do that? In the past I think I used the 'Exit' function but this would annoyingly quit LabView at the end of each trial run whilst still in the development stage.
    Thanks,
    Dave.

  • " device does not respond to is base address, do you want to continue ?" OR " Le périphérique ne répond pas à l'adresse de base"

    Environment :
    NI-DAQ 6.9.3
    PCI-6025 E Card
    LabPC1200 Card
    PCI serial interface card
    AGP video Card
    Measurement & Automation explorer 2.0
    After using the PCI-6025 E during an hour with the Measurement & Automation explorer 2.0 software, the message :�Le périphérique ne repond pas à l�adresse de base, voulez vous continuer?� or « the device does not respond to is base address, do you want to continue ? »
    All the informations , even in the System Configuration Panel, seem to be in order. It seems that the problem occurs after I have tried to use also the Lab PC 1200 by the way of the Measurement & Automation explorer 2.0.
    I have tried to:
    � restart the software,
    � stop the PC and restart it after a while,
    � uninstall NI-DAQ 6.9.3 and all NI softwares
    � Install NI-DAQ 7
    The same problem was always here.
    � stop the PC remove all the Cards except the video card
    � restart the PC
    � stop the PC and put only the PCI-6025E Card
    The same problem was always here.
    � uninstall NI-DAQ 7 and all the NI softwares
    � stop the PC and remove the PCI-6025E Card
    � Install NI-DAQ 6.9.3
    � Stop the PC and install the PCI-6025E Card in another PCI Slot.
    The same problem was always here.
    I have each time try to change the number of the card by the use of Measurement and automation explorer 2.0 but with no success.
    How can I do to use again this card?
    I really thank you for any response.
    NICOLAS Gabriel.

    Hey Nicolas,
    Try opening up the Reset Device.vi inside of LabVIEW and execute the VI. All you have to do is set the correct device number and check that the error returned is 0 and not another error number. In many cases a crashed program can cause the devices to enter into an unsafe state that they need to be reset from.
    It is possible that you damaged the device and that it will need to be sent in for repair, but in most cases a reset will fix the issue. Also, try opening up MAX and right-click on Traditional NI-DAQ Devices under Devices and Interfaces and click on reset Traditional NI-DAQ. If that doesn't work try the Device reset under DAQmx as well.
    I hope this helps out.
    Joshua P.
    National Instruments

  • V8.2 "Not Responding" when updating XY Graph Prpoerties

    LabVIEW 8.2 running on Windows XP crashes (slows to mouse clicks then gets reported as "Not Responding") when I try to format the plot properties (color, weight, etc) on a multi-plot XY Graph.

    ST1,
    Could you provide us with some more details so that we can better help you?
    How much data must be graphed to cause the slowdown (both data-points and plots)?
    Does this happen with any multi-plot XY chart or just in one VI?
    Is your XY chart inside a tab control or similar structure?
    Is your computer running low on memory when this happens?
    Regards,
    Simon H
    Applications Engineer
    National Instruments

  • I to use iphoto library manager to save corrupted iphoto and each time it saves some and the first time it brings up iphoto, iphone goes into "not responding" mode.  Using mac book pro, iphoto 9.5.1, and maverick 10.9.2.

    I've had issues with my iPhoto "not responding" and as a result I am attempting to save my photos to an external hard drive using iPhoto library Manager but each time I start the program it saves some, and then when it starts iPhoto, iPhoto then goes into not responding mode. Using mac book pro, iphoto 9.5.1, and maverick 10.9.2. I have completed all of the photo library first aid steps several times, but it makes no difference, iphoto eventually goes to "not responding."  Initial issues started with Time Machine back ups stopping because of iphoto. Thanks......

    Do you have a back up?
    If you're just trying to recover the photos you can do that much more simply:
    Go to your Pictures Folder and find the iPhoto Library there. Right (or Control-) Click on the icon and select 'Show Package Contents'. A finder window will open with the Library exposed.
    Look there for a Folder called 'Originals' or 'Masters'. (varies according to the version of iPhoto)
    Your photos are inside - these are the originals as imported from your camera.

  • Application, once built, shows "Not Responding" in the toolbar, and it doesn't go away

    If you have an application that is running with some kind of timeout, (My application will send a message, and wait for a user definable period of time for a reply). If this tine is over 5 seconds, and the user clicks on the application, the app sets its status to "(Not Responding)". This is mirrored on the toolbar.
    Once the application begins responding again, the title bar of the app changes back to an active state, although the representation of the app on the tool bar stays in a "(Not Responding)" state.
        I have attempted to stop the user click having an effect by setting the cursor to busy and setting the "Click Disable" to TRUE, but this does not help.
    Any ideas how to get round this one? Or is it a bug?
    Cheers, Alec

    I must not be explaing myself propperly.
    Every application that is open has an instance in the task bar
    As you can see here, I am running outlook, labview, firefox and MSN, but don't tell my boss
    Somtimes, when windows things an application has crashed it will place the phrase "(Not Responding)" next to it's name in the task bar. It will also place the word "(Not Responding)" In the title bar for the application.
    I have written a program that calls a .dll. The function of this .dll is to read incomming data up the RS-232 socket of my PC. I can set a timeout on this, lets say I set it to 1 minute.
    The application is running, I call the .dll to read incoming data, then I don't produce any incoming data. The application will wait, up to 60 seconds for some data, but in the mean time, Windows thinks the LabVIEW executable file has crashed, so places the word "(Not responding)" in the taskbar AND in the title bar. At this point I send my data up the 232, the data is received and displayed by the application. At this point Windows forgives LabVIEW and the "(Not Responding)" status is revolked. This phrase is then removed from the title bar, but IS NOT removed from the task bar.
    Does anyone know if we have control over this, or should I report it as a bug to National Instruments?
    Many thanks guys,
    Cheers, Alec

  • AT-MIO-16XE-50 device is not responding to the selected base address

    I'm trying to install my AT-MIO-16XE-50 DAQ board onto my Windows NT desktop computer, but I'm having trouble.
    Here's what I've done: I've installed LabView 5.1 and the NIDAQ 7.0 software onto my computer first. Then I've physically installed the DAQ board into my computer. After starting the computer, the plug-and-play system seems to recognize the new hardware and install drivers for it. It then says I need to reboot the computer, so I reboot the computer.
    When I then look at my device manager, it lists AT-MIO-16XE-50 twice. Under the properties/resources tab, one of them lists "input/output range", "interrupt request", "direct memory access", and "direct memory access" (i.e., 2 "direct memory access"s). The second one only lists "direct memory access" once and nothing else under the properties/resources tab. Also, the first one says that it is working properly while the second one says that it is not working properly (Code 10). I've played around with chaging the "direct
    memory access" numbers and after rebooting the computer have gotten both AT-MIO-16XE-50's in the device manager to say that they're working properly. So, now the DAQ board appears to be installed correctly, because the device manager reports no problems with it. However, there are still 2 of them. My first question is this: should there be only 1 entry in the device manager list, or are there supposed to be the 2 that I see? The entries do appear to be different from each other, but they're for the same device, so that's a little confusing.
    When I open my Measurement and Automation explorer, only one AT-MIO-16XE-50 device is listed (so this looks good), and under "properties" all 3 "direct memory access" numbers are listed. So, this all seems good. But, when I click on "test resources" or "test panel", I get an error message saying that "the device is not responding to the selected base address". Considering that this device was plug-and-play, and I did not set the base address manually, I don't understand why I'm getting this error message.
    What I've tried is to change the "input/output range" number by using the device manager. I've tried a few different settings (rebooting the computer after each change) and none of the different "input/output range" settings seem to work.
    I'd appreciate it if you could give me any help on figuring out how to resolve this "not responding to base address" problem. The info on your web site
    appears to suggest flipping dip-switches on the DAQ card, but my card does not have any dip switches because it is plug-and-play. So, right now I'm
    clueless! Thanks for reading this, and I hope that you have more insight than I do.

    Smaria,
    The AT-MIO-16XE-50 shows up twice in the Device Manager because it reserves three DMA channels, and the ISA bus only allows two DMA channels per ISA slot. You mentioned that you were able to get both devices working properly in the Device Manager. Below is a link to a KnowledgeBase that describes the proper procedure to successfully accomplish this. You should verify that this is the procedure you followed:
    Exclamation Mark Appears with Error Code 10 on Windows XP/2000/98 After Installing AT-MIO-16E-10
    Spencer S.

  • When i want to go another from a tab,it shows firefox not responding, for a while then opens that tab!this is embarrassing me a lot by taking so much time!!why

    I have two inconviniences with fire fox..
    1)when i want to go another from a tab,it shows firefox not responding, for a while then opens that tab!this is embarrassing me a lot by taking so much time!!why it happens?
    2) every time when adobe flash player is updated, it shows flash player can't be installed and it crashes! it says 'disable real player' though i never installed real player!!
    plz Let me know why it happens to me????

    1. Update firefox to the latest version 2. and disable real player in menu->addons->plugins.
    Recent crashes of certain multimedia contents (this includes Youtube videos, certain flash games and other applications) in conjunction with Firefox 13 are most probably caused by a recent Flash 11.3 update and/or a malfunctioning Real Player browser plugin.
    In order to remedy the problem, please perform the steps mentioned in these Knowledge Base articles:
    [[Flash Plugin - Keep it up to date and troubleshoot problems]]
    [[Flash 11.3 crashes]]
    [[Flash 11.3 doesn't load video in Firefox]]
    Other, more technical information about these issues can be found under these Links:
    http://forums.adobe.com/thread/1018071?tstart=0
    http://blogs.adobe.com/asset/2012/06/inside-flash-player-protected-mode-for-firefox.html
    Please tell us if this helped!
    Please check if all your plugins are up-to-date. To do this, go to the [http://mozilla.com/plugincheck Mozilla Plugin Check site].
    Once you're there, the site will check if all your plugins have the latest versions.
    If you see plugins in the list that have a yellow ''Update'' button or a red ''Update now'' button, please update these immediately.
    To do so, please click each red or yellow button. Then you should see a site that allows you to download the latest version. Double-click the downloaded file to start the installation and follow the steps mentioned in the installation procedure.

  • Lab-PC-1200 not responding in Win2000

    I was using a functioning system using a Lab-PC-1200 DAQ card and Win98 and LabView 5.1.1. I upgraded the computer to Win2000, and now I am having problems.
    When I first run my application, everything seems fine (I read my analog inputs from the card correctly), but when I run a portion of the application that involves data collection in a While Loop, I get an "Error -10452 @ AI Single Scan. NI-DAQ LV: No inerrupt level is available for use."
    After a while of trying to troubleshoot that problem unsuccessfully, I try to go into M&A Explorer and Test Resources and get "The device is not responding to the selected base address." I was not getting this error before.
    So my first goal is to find out why the device is no longer re
    sponding. I am running NI-DAQ 6.9.3. In the Win2000 device manager, it says everything is operating correctly. I have tried rebooting, reseating the card, deleting the device then rebooting to re-install the drivers, and nothing seems to work.
    I have read through several other complaints of similar problems, but no solutions yet. Any other ideas out there?

    Hello,
    I was able to find a document which is similar to your problem, although a different operating system. It sounds like for your case, you have an IRQ assigned, so that will differ from the information that I found. Regardless, I will post it for information that could assist you. I suggest checking the resources and seeing if there is anything else that is sharing your resources. If there are, either assign a different IRQ (if available) to your device, or disable the devices that are sharing. The other suggestion that I have for you is to try the device in a different computer to see if you can isolate the problem to either the board or the computer. If it is the board, then you can send the device in for a repair.
    Good luck.
    Jared A.
    ================================
    The following trick was used on a Windows98 machine to assign an IRQ to a Lab-PC-1200 board (AT-interface) when no free IRQs were available. The lack of free IRQs caused an error -10452 during any buffered acquisition. In this case, we deliberately created a resource conflict with LPT1 and the DAQ Card, both using IRQ 7, to get the DAQ card working. The "trick" is to know that the user cannot simultaneously use LPT1 and the DAQ card and live with the conflict. Before trying this procedure, confirm that the DAQ card installed properly, and the only problem is the lack of an IRQ assignment to the card because none are available.
    1) In Win9x, enter start >> settings >> control panel >> system >> device manager >> select "computer" >> properties >> select "View Resources" and IRQ. Browse the list and determine if any free IRQ levels are available - also determine what resources which are currently used are not needed. (*note : do not mess with any entries that you do not understand). In this case, the user identified LPT1 as a used resource that he would not need. Press "cancel" to get back to the device manager tab.
    2) In the system control panel device manager, select the DAQ card lacking an IRQ resource under "Data Acquisition Devices". Select "properties" and go to the resources tab. Uncheck "Use Automatic Settings" and select a configuration that allows entry of an IRQ. Select IRQ and press "Change Setting", scroll through the list of IRQs until you select one used by a device that you know you can live without. In this case, we selected IRQ 7 for LPT1. (note - you can also try reserving IRQ resources under the "reserve resources" tab).
    3) Reboot the computer.
    4) Enter Device Manager again - observe that the two devices are now showing a conflict on the selected IRQ - this is normal and on-purpose.
    5) Enter Measurement and Automation Explorer (MAX). Select the DAQ card and test resources. The device should now pass the test.
    Other Suggestion:
    In the BIOS, some computers allow you to select PCI only, ISA only, or both PCI/ISA for various slots, and thus reserves resources for those slots. You may be able to enter the BIOS and select "Both PCI/ISA" to free resources for use with ISA cards if they are reserved for PCI cards.

  • If my device does not respond in MAX does it mean it is damaged?

    I was using an example vi to acquire digital data, however the output LEDs on the vi front panel started to show random results.  So I closed the vi down and tried again but nothing happened at all?  So I went to check acquisition in MAX and the following error message was displayed:
    The device is not responding to the first IRQ level.
    Does this mean I have damaged the PCI card?  If it does,  will it cost a lot to get fixed and how long will it take to get it back in working order as I have to complete my labview project by early december.
    cheers

    Hi Hannah
    I'm using PCI-6034.  I was able to acquire data in MAX and LabView vi's for the last couple of months so I am presuming that it must have been set-up correctly, although I could be wrong.  I am also concerned by the fact that I could smell a hint of burning coming from the PC when I was performing the last acqusition before MAX could no longer acess the card. 
    I am guessing that this means the card is fried?  Can it be repaired or will it have to be replaced?
    cheers  

Maybe you are looking for

  • I have mac, desktop v. 3.6.16 will not update to 6. My mac laptop is updated to 6 but runs very slow. How do I get my laptop back to 3.6.16

    Desktop is an imac is 10.6.8 running firefox v 3.6.16 and runs well. My mac laptop also 10.6.8 automatically upgraded to 6.0 and runs very slow, and I do not like the layout of the toolbar. How do I get my laptop back to 3.16.6

  • Replace document fonts in InDesign CS6, js

    Hi, I need to replace document fonts in InDesign. I get the existing fonts with following script, but not sure how to replace let's say Helvetica Regular with Aria Regular: for(var counter = 0; counter < document.fonts.length; counter++){            

  • Dbx SEGV signal encountered while memory leak checking

    Good morning, Last week, I have encountered the following problem while debugging a UNIX Solaris on a SUN server: Running the program without memory leak checking goes fine. Running the program while memory leak checking gives following error message

  • Missing some billing in MC+E

    Dear All, In MCE  there some billing has disappeared in my sales organization. I checked the field STAFO in table VBAK, VBAP, VBRK, LIKP has empty. It should filled by 00001. I think if I changed the value in STAFO then I can see properly in MCe. The

  • How to create online log in standby instance?

    Oracle say that: Step 3 Create an Online Redo Log on the Standby Database Although this step is optional, Oracle recommends that an online redo log be created when a standby database is created. By following this best practice, a standby database wil