Is there a known conflect between PCI 6034E and 7344

I just installed a new PCI 6034E and now the DAC on my PC 7344 motion board seems to be putting out non-linear voltages from my position encoder. Does anyone know why?

LA 75,
Thanks for your answe,r here are mine.
1. The 7344 worked fine until I stuck the PCI 6034E in it. I have an update for you on the problem which I learned after more testing. The quaditure count on the encoder is 16384
I only need to measure -20 to 90 degree angles in my application. When I set up my DAQ channel (using a PCI 6025E which I still have in place) I calibrated based on +10 volts
out of the 7344 DAC channel (axis 3) = 90 degrees an 0 volts = 0 degrees. What's really happening is that the DAC output is now 12.4 volts and its saturating the DAQ input
channel. If I recalibrate with 0 volts = 45 degrees I can work around the problem...the thing is I don't know what caused this and what other safety implications there might be.
2. The new board (PCI 6034E) is in the last slot and the 7344 is in the first slot...in between is an ethernet card and the PCI 6025E.
3. I do not have another PC to test this thing in.
Jim Fee

Similar Messages

  • Are there any known conflicts between Mountain Lion and Microsoft Outlook for Mac? After installing, I can't send or receive eMails

    Are there any known conflicts between Mountain Lion (10.8.3) and Microsoft Outlook for Mac? After installing, I can't send or receive eMails. Using a Macbook Pro.

    Is this a recent problem or has it been going on for some time.  If you just updated to ML, you might want to confirm that you've update to the latest MS Office / Outlook patches.

  • Is there a known issue between iOS 7 and iPad camera?

    Inherited a barely used iPad 3. Set it up as new, latest software update.
    If I open the camera app, it's a black screen and the controls are unresponsive. If I hit the swap to front camera button, even though there is no response, but close then open the app, the front facing camera works as it should. If I try to swap it around, all I get is a blurred image in frozen screen. If I try to switch it back again to the forward facing camera: black screen and unresponsive controls.
    Does this sound familiar to anyone?
    I have restarted, re-set up etc. Barely used but out of warranty.
    Thanks!!

    You can try the direct download links here:
    https://www.macupdate.com/app/mac/28341/apple-ios
    though you may still have the same issue getting a complete copy unless you can use a computer with a better Internet connection. If you get a successful download, you can then install it by Option-clicking the Update button in iTunes and choosing the downloaded file.
    Regards.

  • Is there a good workflow between LR2.6 and PSE8?

    Is there a good workflow between LR2.6 and PSE8? I am new to PSE and would like to use it as a secondary editor but continue to use LR to manage my photos. I read that PSE8 will handle raw format but can not get LR to export other than TIF, JPG and PSD. I woiuld appreciate tips fro others doing the same.

    I noticed with one of my two LR2.6/PSE8 installations, that LR did not pick up PSE8 automatically as installed. I had to add the key
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\PhotoshopElementsEditor.exe
    with two values to the registry (obviously I'm a WinXP user).
    The attached .txt file embedded in the .zip shows the key and the two values needed in my case. To add the values to a registry, extact the .txt file from the .zip, remove the .txt extension from the name to make it a .reg file and double click it (at your own risk!).
    After adding them, LR would show Edit in Adobe Photoshop Elements ... as an option, which it would not before.
    Beat Gossweiler
    Switzerland
    Message was edited by: b_gossweiler

  • Is there a big difference between AMD D500 and AMD D700?

    Hi all,
    Is there a big difference between AMD D500 and AMD D700 for the MAc Pro 2013?
    I am a pro musician, but video editing and photography are my hobbies. Dont't know which one to take.

    D700 GPU pricing - Shocked?

  • Is there a sound difference between iphone 4 and 4s

    Is there a sound difference between iphone 4 and 4s

    Don't know what it means.
    Are you listening to the iphones speaker or through earbuds?
    Is something blocking your speaker?
    Is the volume turned up?
    Have you tried a restart?
    Reset?
    Restore?

  • Is there any actual difference between Release, Debug and Debug Local configurations in SSRS project?

    Is there any actual difference between Release, Debug and Debug Local configurations in SSRS project?
    For example in VC++ Debug build would have all optimization turned off (by default) and included additional Debug information in executable.
    Since there is no executable produced for SSRS - is there any actual difference between configurations? Or are they only for the purpose of deploying to different destination servers?

    Hi JoeSchmoe115,
    The Project Configuration and Configuration Manager is a feature supported by Visual Studio, on which Business Intelligence Development Studio or SQL Server Data Tools is based. We can use Configuration Manager to create and manage sets of project properties
    in project configurations. You are right that the project configurations is only for deployment purpose in a Report Server project.
    Reference:
    http://technet.microsoft.com/en-us/library/ms155802.aspx 
    Regards,
    Mike Yin
    TechNet Community Support

  • Are there any functional differences between the trial and the paid version?

    Are there any functional differences between the trial and the paid version for Labview 2009?  Thank you.
    Solved!
    Go to Solution.

    This outlines the limitations of the eval version of Labview: Limitations of the LabVIEW Evaluation Version
    Cheers, 
    Misha

  • Sharing an external sample clock between PCI-6722 and PCI-6602

        I need PCI-6602 work with PCI-6722。6602 shares 6722’s ao/SampleClock as external clock and triggered by 6722’s ao/StartTrigger。The master device is 6722, which refered as Dev1, and the slave device is 6602, which refered as Dev2. A RTSI line is used to connect the two devices correctly.
        I use C API to finish my program and my code is as follows:
    //config 6722 analog out task
    1、DAQmxCreateTask("NI6672", &hAOTask);
    2、DAQmxCreateAOVoltageChan(hAOTask, "Dev1/ao0", "", -10.0, 10.0, DAQmx_Val_Volts, "" );
    3、DAQmxCfgSampClkTiming(hAOTask, "", 1000.0, DAQmx_Val_Rising, DAQmx_Val_ContSamps, 1000);
    4、DAQmxWriteAnalogF64(hAOTask, 1000, 0, 10.0, DAQmx_Val_GroupByChannel, data, NULL, NULL);
    //config 6602 counter task
    5、DAQmxCreateTask("NI6602", &hCounterTask);
    6、DAQmxCreateCICountEdgesChan(hCounterTask, "Dev2/ctr0", "", DAQmx_Val_Rising, 0, DAQmx_Val_CountUp);
    //use /Dev1/ao/SampleClock for external clock
    7、DAQmxCfgSampClkTiming(hCounterTask, "/Dev1/ao/SampleClock", 1000.0, DAQmx_Val_Rising, DAQmx_Val_ContSamps, 1000);
    //use /Dev1/ao/StartTrigger
    8、DAQmxSetTrigAttribute (hCounterTask, DAQmx_ArmStartTrig_Type, DAQmx_Val_DigEdge);
    9、DAQmxSetTrigAttribute (hCounterTask, DAQmx_DigEdge_ArmStartTrig_Src, "/Dev1/ao/StartTrigger");
    10、DAQmxSetTrigAttribute (hCounterTask, DAQmx_DigEdge_ArmStartTrig_Edge, DAQmx_Val_Rising);
    //start counter task first
    11、DAQmxStartTask(hCounterTask);
    //start 6722 task
    12、DAQmxStartTask(hAOTask);
    I run it on the MAX virtual Device, and the Step 11always returned -89120。
    I try to slove this problem, so I change the Step 7, use /Dev2/PFI9 to instead of /Dev1/ao/SampleClock.
    7、DAQmxCfgSampClkTiming(hCounterTask, "/Dev2/PFI9", 1000.0, DAQmx_Val_Rising, DAQmx_Val_ContSamps, 1000);
    The code runs well, but I don’t know which terminal is connected by /Dev2/PFI9. Does it connect to /Dev1/ao/SampleClock?
    I use another API DAQmxConnectTerms to ensure that, I add a Step before Step 11.
    DAQmxConnectTerms( "/Dev1/ao/SampleClock", "/Dev2/PFI9", DAQmx_Val_DoNotInvertPolarity );
    The program also run well. But I am still not sure that 6602 is sharing /Dev1/ao/SampleClock。If not, which terminal of Dev1 is connected by /Dev2/PFI9?
    Is my code right? If not, hwo to fix my code or supply some example for me? Thanks.

    Hello Shokey,
    From looking over your post, it looks like you want to program in C, using simulated instruments, a master/slave design with a PCI-6602 and PCI-6722. The PCI-6722 is the master device and the PCI-6602 is the slave device. In order to implement this with the real cards, you would need a RTSI cable between the 2 cards in order to pass the triggers and the sample clock. Unfortunately with simulated devices you can't implement this so parts of your code won't be able to work exactly like if you had the instrument.
    If you did have the instrument, you can implement this by performing the following steps:
    Master Device:
    1.) Export the ao/SampleClock and ao/StartTrigger to a RTSI Line. (See DAQmx C Reference help for DAQmxExportSignal to export these)
    Slave Device:
    1.) Set the Sample clock and the trigger to the RTSI.
    There is another forum that I think will help you out to implement this correctly. In this forum, the customer was trying to export a trigger through a RTSI and the problem he was experiencing was a broken RTSI cable. His code, he states, works. I hope this helps you with this and if you have any more questions, feel free to post.
    Jim St
    National Instruments
    RF Product Support Engineer

  • Are there any technical Differences between stanard R3 and ISU

    Hello everyone,
    I have recently been speaking to a client who is running ISU.  They are asking for assistance with thier landscape from a technical perspective (BASIS and DB).  i.e. monitoring db growth, reorgs, etc.
    Now, I have been working in BASIS for over 10 years now, and am very comfortable with the above rols.  My question however is -  are there any "technical" differences between the standard SAP system, and ISU?  or are the differences mainly seen on the functional side?
    Thank you very much for any insight any of you can provide.
    Kind regards
    Richard Rog

    Hi Richard,
    I have been a Basis administrator for IS-U/CCS systems for 7 years.  The points Juris made are correct. 
    There are no new transactions or procedures for maintaining and monitoring an ISU system.  ISU "sits" on top of R/3.  The main ISU transaction for customer contact CIC0 has an HTML component that needs an ITS server.  In a 4.6C system you will need to maintain an external ITS.  In ECC 6.0 you will have an integrated ITS.  The main difference from a Basis perspective is support pack application. 
    In 4.6C ISU is an add-in installed in SAINT.  There are conflict resolution support packages (CRT's) that are installed at the same time the SAP_APPL support packages are applied.  In fact SPAM recognizes the ISU add-in and won't let you upgrade APPL (and sometimes Basis) support packs without the CRT's.
    In ECC 6.0 IS-U isn't an add-in any more and has it's own support packs in module IS-UT.  IS-U must be turned on though during an installation or upgrade.  This is done in SPRO with "Activate Business Funcitons".
    Dustin
    Edited by: Dustin Justet on Jun 27, 2008 10:47 AM
    Edited by: Dustin Justet on Jun 27, 2008 10:51 AM

  • Is there a real benefit between airport express and extreme if you do not have the platforms with ac norm?

    Is there a real benefit between airport extreme vs express if your pc is not in the same ac norm?

    Not a lot, unless you plan to connect to the AirPort using a wired Ethernet connection, or connect a hard drive to the AirPort.
    The Ethernet ports on the AirPort Extreme are 10 times faster than the ports on an Express. You can connect a hard drive to the USB port on the AirPort Extreme. You can't on the AirPort Express.
    There are more wireless antennas in the "new" AirPort Extreme and they are located up at the top of the "tower". That might improve things a bit as well.

  • There is a mismatch between order type and GL accountu201D.

    Hello
    Can any one help me to know why I am getting this error message.
    Here  I am giving the steps carried out.
    Step1. Using transaction code: FB60 I have posted a vendor invoice to a Machinery account GL account against a internal order.
    Step2. A down payment using transaction code FBA7. using a special indicator M to a bank account.
    Step3. When I am trying to clear the open item  (by selecting above both documents) for the vendor using transaction F-44 system is giving an error message u201CThere is a mismatch between order type and GL accountu201D. System is prompting to correct the down payment entry, where I dint use any Cost centre, internal order.
    Checked the Internal order profile, AUC settlement profile etc and no able to find an error message.
    Can any one explain me why this error is coming and what need to be check in order to rectify it.
    Regards
    RS.

    Hi It looks that the field status of the Order Type and GL Account field status is being mistmatching with each other. You can check the field status group given on GL Account and the fields status in Order Type.

  • What is the difference between PCI-x and PCI Express?

    I hear the new dual core Power Macs have PCI Express slots. How are these different than the PCI-X slots in my old Power Mac?
    jmf

    PCI Express is faster than PCI-X and not a bus architecture. Each slot has its own dedicated bandwidth to and from the system controller.
    PCI-X has a maximum clock speed of 133 MHz and a maximum throughput of just over 1 GBps.
    PCI Express cards and slots are defined by their bandwidth, or number of data lanes — typically one lane, four lanes, eight lanes, or 16 lanes. At 250 MBps per lane, a four-lane slot can transfer data at up to 1 GBps and an eight-lane slot, up to 2 GBps. The new PowerMac G5s have one 16 lane slot, two four-lane slots, and one eight-lane slot.

  • Is there a known conflict between an extreme g base station and express n in a roaming network?

    I have an extreme g base station connected to a cable modem, an express g connected to a linksys switch via ethernet, and an express n connected to the same switch via Ethernet. The switch is connected to the extreme g base station by Ethernet as well. They are all set up to be a roaming network with 128 bit WEP security. I made two changes to the network recently. I went from a WDS setup with the extreme g and express g, which was generally stable but slow, to the roaming setup above, and I added the express n. Now something is causing the network to loose connectivity at least once a day, requiring a restart of the extreme g. My hunch is the express n is causing problems for the older g units.
    Does anyone know if this is a known problem and if there is a solution?
    Thanks.

    For what its worth.....
    I have mixed older "b/g" and newer "n" devices in "extended" and "roaming" networks for years, and have never experienced any issues with this type of setup.
    As a Community Support "regular", I can say that I cannot recall having seen the type of issue that you have described, but other users may comment with different opinions.

  • Is there a known conflict between a CalDigit FASTA-GU3 sata/USB 3 card and an ATI Radeon X1900XT video card?

    Hello all.
    I am having trouble with my Mac Pro (circa 2008) not powering up the monitor (an Apple HD Cinema Display 23 inch).
    Here's some history.
    For about two weeks I was having trouble waking up the monitor from sleep. I would have to reboot the computer to see the screen.
    Then the screen wouldn't wake up after many reboots. I tried the Apple Cinema Display on my MacBook Pro laptop an on an older Mac Mini. The display didn’t' work on any of them.
    I then hooked up a Samsung monitor to all three computers in turn. The Samsung worked fine with each.
    From that I deduced that it was Apple HD Cinema Display that was at fault.
    I replaced it with one I bought from a friend - in perfect working condition.
    The new Apple Display worked fine with my Mac Pro.
    Problem solved - or so I thought.
    Now, a few days later, I am having a repeat of the same problem. The Apple Cinema Display won't wake up.
    I removed all the peripheral devices, still no joy.
    I removed and reseated the video card (after blasting all with compressed air).
    Still no joy.
    I then removed the CalDigit FASTA-GU3 sata/USB 3 card I installed about a year ago.
    Now the Apple Display came back to life.
    So my question is, are there know conflicts between a CalDigit FASTA-GU3 and an ATI Radeon X1900XT video card?
    If so - is there a fix?
    Also open to other theories.
    Other tech specs:
    Mac Pro (from around 2008) 2 x 3 GHZ Quad Intel Xeon.
    OSX Lion
    The video card is an ATI Radeon X1900XT (512 MB)
    Apple HD Cinema Display - 23 inch
    Many thanks.

    Thanks for the info on the Expansion Slot Utility. I found it and ran it. It shows no problems. It shows the ATI Radeon X1900XT to be properly installed and running at full capacity.
    I found a reliable dealer of flashed ATI Radeon 5770 cards. A couple of trusted friends have had good luck with cards from the dealer.
    So I will have that on stand-by for when/if the existing card fails completely.
    Thanks everyone for your input.
    A

Maybe you are looking for

  • Error occurred while converting file on cd. Error (-50)

    Having issues downloading audio cds to itunes. Error (-50) message being received.

  • Bootcamp Windows 7 HDMI audio problem

    Hello, I have problem sound over HDMI with my MBP late 2013 13'' model A1502 on Windows 7 with Bootcamp. I've installed Windows following Bootcamp wizard from mac and creating bootable WIN7 usb with all support drivers on it. After this I've noticed

  • Material Master data distribution using the Classifications

    Hi All, I am attempting to cater for a business scenario where we wish to distribute material master records via IDOCS by assigning a class to each material we wish to send out.  We have a new classtype (Z01) which is setup for distribution purposes

  • How to make folders for photos

    How can I sort my photos out into folders so that I can choose which photos I want as my desktop. At the moment it wont let me choose a specific folder to have rotating as my desktop so I'm having to have all my photos on rotation. Help anyone?!?!?!

  • Why can't i use mail in other user accounts? (the mail icon is a ? mark)

    My user account is the main administrator account, .... but i have other family members that are at that age that they want to use their own account with their own mail account. However, .... under those other accounts, .... the mail icon in the dock