Qnx 6.5 and PCI - 6123

I'm looking to use a PCI-6123 in QNX 6.5
The faq lists QNX support for 6.2 with a "native driver" and lists the 6133 as supported.
Can someone explain what "native driver" implies?
Does anyone know what woudl be involved in using QNX 6.5?
Does anyone know why the 6133 is listed as supported but the 6123  is not?
Thanks,
Amaury

Hello,
I'll try to answer some of your questions.
The driver development kit is split into two parts: the operating system interface and the hardware interface. The operating system interface is used to allow the hardware interface to run on any operating system that is supported by the operating system interface.
Native driver means that the operating system interface for QNX makes calls directly to the QNX operating system. The alternative to this is a VISA driver, which means that the operating system interface makes calls into NI-VISA.
When we say that QNX 6.2 is supported, we mean that it has been tested. QNX 6.5 has not been tested by us, so I am unable to comment on how much effort it would be.
The 6123 is not supported with the DDK because the hardware is substantially different and requires different initialization compared with the 6133/6143.
Thanks,
Steven T.

Similar Messages

  • Digiatal pre-trigger over RISI w/NI PCI-6123 DAQmx

    I have an application which I need to aquire pretriggerded data using a PCI-6123 via RTSI bus from a channel on PCI-6052. Am aquireing a total of 7 channels, 6 on the PCI 6123 and 1 on the PCI 6052.  I am using DAQmx. Has anyone successfully achived this?

    Hi John,
    First you will need to connect your cards with a RTSI cable and then create that cable in MAX.
    Sounds like all you need to do is a multi device synchronization. You can find examples for doing that by going to
    Help > Find Examples > Hardware Input and Output > DAQmx > Synchronization > Multi Device
    Once you see how to synchronize multiple devices you can either share the sample clock, or share the trigger.
    In your case I think you will want to share the trigger over the RTSI line.  For the 6052 it sounds like you want to do an analog start trigger.  For the 6123 though you said that you want pre-trigger samples.  That means you will have to set up a Reference Trigger for the 6123, and then have it trigger off of the ai/StartTrigger signal from your 6052. 
    You can find all of the examples with triggering in a similar path as before:
    Help > Find Examples > Hardware Input and Output > DAQmx > Analog Measurements
    Sharing the signals is a breeze and most everything is done automatically by the DAQmx drivers. 
    For more details on synchronization check out this Tutorial:
    Advanced Data Acquisition Series - Synchronization with NI LabVIEW and NI-DAQmx
    Otis
    Training and Certification
    Product Support Engineer
    National Instruments

  • Problems with Ethernet controller and PCI device driver on Satellite L30-10X

    Hellow!
    Sorry for my bad English, I'm from Russia.
    Just few days ago I bought Satellite L30-10X with W Vista on board. My opinion, that this OS does't very good on this computer, so I install W XP.
    I have some problems with drivers. At first, I dont know what model I have:PSL30 or PSL33? I download all drivers for both models. But, after installation, computer doen't find drivers for Ethernet controller and PCI device...

    Hi
    Satellite L30-10X belongs to the PSL33E series. This number can be found on the label placed on the bottom of the unit!
    You have to choose this number from the driver download form to get the compatible XP drivers.
    I dont know why you are not able to install the LAN driver. Ive got the same notebook with Vista and Ive installed the XP and all drivers run fine.
    I assume you have installed the drivers in wrong order. Please take the look in the Toshiba installation instruction txt file. In this order you have to install the driver! Its important.
    I think you should install the XP again to ensure the clean registry and then download and install the compatible XP drivers like mentioned in the installation instruction file.
    Good luck

  • 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

  • Work with PCI-6052E and PCI-6601 simultaneously

    Hi, I'm working with PCI-6052 for bufered data output and PCI-6601 for read two encoders at same time, when I work with single board I don't have problems but when I work both simultaneously I have a problem only I can out data or only I can read the encoders but not both at the same time. How I make this?

    Hi,
    You probably have one task in LabView running in series after the other. Both of these tasks require a loop. Your buffered data output needs to be written in continuous fashion in a loop (I believe) and your encoder measurements are being read constantly as well (should be in a loop). Try experimenting with these two suggestions.
    I would copy both programs into 1 VI and keep them running completely separate. LabView will be able to assign each a different thread so they should be able to run completely in parallel. Therefore you would have 2 parallel loops that are not connected at all.
    You can also create two completely different VIs and run them in parallel. There is no reason why the two different programs would interfere.
    Hope that he
    lps. Have a good day.
    Ron

  • AGP and PCI interact?

    is it likely that AGP slots and PCI slots interact in some way?
    I had my monitor acting strangely depending on which PCI slots were placed PCI cards...

    I am a Digidesign ProTools user and I have three Digidesign cards in the PCI slots. They seem to be very picky about their placement in the PCI slots. Anyway if the first PCI slot is empty monitor does not come on when I start computer or comes on with an irregular image (slow in responding and moving little stripes) unless I restart and everything returns as it should. How can I check if power is enough to drive everything properly? Or do I need to update some driver? Is there a better graphic card that I can install in place of the stock one (should be a Radeon 7500 or a GeForceMx)?
    Quicksilver 2002 Sonnet Encore 1.8GHz 1Gb ram Mac OS X (10.3.5)

  • Is there example code for using Ni488 and PCI-GPIB card in non controller mode?

    Is there example code for using Ni488 and PCI-GPIB card in non controller mode?

    cymrieg,
    Your code looks good to me. What is the problem? What happens when it fails? What is the IBSTA value on the controller, and at what point in the code does it stop? What is the IBSTA value on the slave, and at what point does it stop?
    One thing is that you might not want to call IBCLR() in a loop on the device. At the beginning of the program is fine...This will send a clear command to the device and will clear out any LACS and TACS bits that might be set. Also your IBDEV call shouldn't be in a loop.
    Hope this helps, but let me know if you need more information.
    Scott B.
    GPIB Software
    National Instruments

  • I need to interface SCC-TC02 with help of SC 2345 and PCI-6024E DAQ Card.please tell me the procedure and if possible send me the program

    Dear Friends,
               I need to interface SCC-TC02 with help of SC 2345 and PCI-6024E DAQ Card.But i can not understand example program.please send me the procedure to interface these three componnets and if possible send me the program.
    With Regards,
    Eswaramoorthy K V

    nce of nth triggering pulse. i need to know when the when the ist trigger occurs and when the nth trigger occurs . please tell me how to to . what i know is that event triggering has to be done with start and stop trigger. please tell me how it has to doneSuresh;
    What you will need to do is to set up a digital start and stop triggered Analog Input acquisition. Then you will need to have a counter set as event counter, having the specific number of pulses you need configured as the preset value, configured to count down, and generating a pulse after the terminal count has been reached. That counter output will be the stop trigger of the Analog Input operation. In summary, you will have the external pulse being both the digital trigger of the Analog Input operation and the source pin of the counter, and the counter output being the digital stop signal for the analog input.
    I'm attaching a Labview VI that does the start and stop analog input acquisition. You will need to include the counter part and set the stop s
    ignal to be the counter output.
    Hope this helps.
    Filipe
    Attachments:
    AI_Start-Stop_D-Trig.zip ‏25 KB

  • On-board RAID and PCI RAID controller

    Hello everybody,
    I am new to the forum. So, please excuse me if that topic was already covered...
    I have MSI MAX2-LR (MS-6398E) board. It works just fine, no problem so far. Though I have 2 problems with add-on cards:
    1.  I was planning to use on-board RAID and additional PCI RAID controller = FastTrack 100 TX2 to cover 6 hard drives into 2 mirrored sets: 4drives one and 2 drives the other.
    It doesn't work! I can use either on-board RAID or PCI RAID. As soon as I have any drive connected to on-board RAID, the PCI RAID disappeares. If I have no drives connected to on-board RAID, I can see both RAID controllers, they have different I/O and IRQs, and PCI RAID is working just fine. If only I connect one drive to the on-board RAID, it gets activated on startup, and the other one disappeares. :O
    I believe it's a BIOS bug. I wander, if that can be fixed easily????? :D
    2. I have a new Matrox Video card = Parhelia. It doesn't work in AGP slot! System doesn't recognize it, and beeps non-stop. I am dealing with Matrox Tech Support on that matter.  ?(
    Maybe, it's a known issue, and somebody can save me time by telling what's that about.
    Appreciate any imput. Have a great weekend.!!! :]

    Hey I also have the same Raid card and also the Matrox Parhelia, and I see that you also have some problems with the card I got also problems with the card, but they couldnt help me at theire forums (http://forum.matrox.com/mgaforum/Forum10/HTML/005085.html), I hope we have got more luck here  :D

  • Missing pci bus 2 and PCI/VEN_10EC&DEV_5209& SUBSYS_3577 103C&REV

    missing pci bus 2 and PCI/VEN_10EC&DEV_5209& SUBSYS_3577 103C&REV.             Can someone please help me and tell me how to get these drivers downloaded to my pc.Id really appreciate it and thanks in advance...

    Hi, It is the card reader. Please try the first one for Windows:    http://www.realtek.com.tw/Downloads/downloadsView.aspx?Langid=1&PNid=15&PFid=25&Level=4&Conn=3&DownTypeID=3&GetDown=false Regards.

  • Error -200141 when doing buffered events with DAQmx and PCI-6602

    When doing buffered events with DAQmx and PCI-6602 I get error 200141 - Data was overwritten before it could be read by the system.
    This error is generated ONLY with random inputs >200/sec.
    My setup is :
    DAQmxCreateCIVCountEdges(taskhandle,"Dev1/ctr3"....
    DAQmxCG+FGSampClkTiming(taskhandle,"/Dev1/FPI35",...
    DAQmxSetCICountEgdesChan(taskhandlem,"", "/Dev1/80MHZTimeBase")
    DAQmxSetChanAttribute(taskhandlw,",",DAQmx_CI_DataXferMech,DAQmx_Val_DMA,0);
    Can somebody help ?

    i'm getting the same Error-200141, while reading semiperiods. (Meas_Buffered semiperiod continous)
    while loop ex.rate seems to be pulsewidth*no.Samples to read. in my case PW=60ms
    Input buffer size measured with Property node= 10000
    why this error happens?? i cant use any mode other than implicit timing for semi-period measurement right??
    more info: all the ai channels are used ~ 16 differencial.
    i found one solution which is _ reinitializing the whole task if an error occur. is this the right way??
    Kudos always welcome for helpful posts
    Attachments:
    Counter_1_Meas Buffered Semi-Period-Continuous_main_lv09.vi ‏34 KB
    SemiPeriod_Reconnect Counter on Error.vi ‏35 KB

  • Network controller and pci device driver missing for Toshiba Sattelite c55t b5109

    After resetting windows 8.1, I only my ethernet works and I cant turn my wifi. I looked in the device manger, and under "unknown devices" are listed Network Controller and PCI Device with yellow alerts near them. I know that these are related to the wireless card, but everytime I try to update them they say that there is no driver for them.
    These are their hardware id's:
    Network Controller:
    PCI\VEN_168C&DEV_0036&SUBSYS_083211AD&REV_01
    PCI\VEN_168C&DEV_0036&SUBSYS_083211AD
    PCI\VEN_168C&DEV_0036&CC_028000
    PCI\VEN_168C&DEV_0036&CC_0280
    PCI Device:
    PCI\VEN_10EC&DEV_5229&SUBSYS_F91B1179&REV_01
    PCI\VEN_10EC&DEV_5229&SUBSYS_F91B1179
    PCI\VEN_10EC&DEV_5229&CC_FF0000
    PCI\VEN_10EC&DEV_5229&CC_FF00
    PLEASE HELP!!!!

    search your laptop for the Toshiba application installer, open it and use it to install your Wireles lan driver.
    The application installer is easier than guessing which one you need from your support page.
    OR
    Your support page is here - http://support.toshiba.com/support/modelHome?freeText=1200008391
    You can select the drivers tab then down the page on the left hand side select Windows 8.1 64 bit to narrow down the drivers for your operating system. Then also select Wifi and the available drivers will be displayed.
    If you are getting a corrupted system after a reset your hard drive may be failing or your recovery partition may have been corrupted .  Create your recovery media if you have not done so already.
    S70-ABT2N22 Windows 7 Pro & 8.1Pro, C55-A5180 Windows 8.1****Click on White “Kudos” STAR to say thanks!****

  • Inquiring about the issue of using PCI-5922 and PCI-5412 simultaneously under Linux OS! Thank you!

    hi all,I am lily and I an AE from NI shanghai .Now I confronted a pullze from customer,and I really feel at a loss! Hope some one of you would come and land me a hand,thank you in advance!
    The problem is as follows:
    Customer use PCI-5922 and PCI -5412 under Linux OS, if they use either of the two cards seperately,there would be OK. but if the use both of the two cards simultaneously, the error will occured as attachment shows. "Error code:-50258 occured at niscope_DAQmx Create Channel (AI-Voltage-Base).vi:2  Possible reason(s):The specified software component failed to initialize."
    Can I know is there any solution vs this probelm?Thank you in advance!!
    Attachments:
    Screenshot-NI-DAQmx Test Panels.png ‏17 KB
    NI-NEW_error.txt ‏8 KB
    shortsyms.txt ‏973 KB

    This is the wrong board for this question, you should re-post here
    Regards
    Ray Farmer

  • How to reduce reading and recording data time/ Visual C++, PCI 6024E and PCI-MIO-16E?

    Right now I am working on a data communication programme. The time of reading digital signal and recording data is more than I expected, which is about 100 microsecond. I need to reduce the time. The software I am using is Visual C++ 6.0. I use two DAQ boards, which are PCI-6024E and PCI-MIO-16E. I have set the priority of Visual C++ to be realtime by task manager. The operating systme is Windows XP.
    I am wondering how to set the interrupt of reading or writing data to be the highest and stop any other kind of interrupt.
    Thanks in advance!

    The primary limitation you will encounter when trying to do high speed
    digital I/O using your E-Series hardware is that the digital lines are
    all software timed.  This means that for each and every digital
    read it is necessary for your software to issue a command to your
    hardware, read a single point, then receive the response from the
    board.  This prevents you from performing digital operations at
    very high speed.  In general, I would say that 100 microseconds is
    a very good response using software-timed digital I/O on a Windows
    computer.
    It is difficult to make a good recommendation without more detail about
    what you are trying to do.  You may need to consider switching to
    a Real-Time operating system, or upgrading your DAQ hardware to a board
    that will allow you to time your digital acquisitions on the board
    itself.  These devices, such as the m-Series DAQ or the PCI-653x
    series, would allow you to use hardware triggers for your digital
    acquisitions, change detection, and buffered data acquisitions to
    reduce the software overhead involved in a rapid acquisition.

  • HP 14-d017AU: Issues with Webcam, Network, Ethernet, VGA and PCI Device drivers

    I downgraded my new HP 14-d017AU to Windows 7, 64-bit. Since then I have not been able to find drivers for Webcam, Network, Ethernet, VGA  and PCI Device. The Hardware IDs are as follows: Ethernet Controller: PCI\VEN_10EC&DEV_8136&SUBSYS_2191103C&REV_07Network Controller: PCI\VEN_168C&DEV_0036&SUBSYS_217F103C&REV_01PCI Device: PCI\VEN_10EC&DEV_5229&SUBSYS_2191103C&REV_01Universal Serial Bus (USB) Controller: PCI\VEN_1022&DEV_7814&SUBSYS_2191103C&REV_01Standard VGA Graphics Adapter: PCI\VEN_1002&DEV_9834&SUBSYS_2191103C&REV_00I will be grateful for your assistance.  

    Hi: See if this works... Graphics:  Install and reboot. http://support.amd.com/en-us/download/mobile?os=Windows%207%20-%2064 USB 3:  Install both of these and reboot. http://h20565.www2.hp.com/portal/site/hpsc/template.PAGE/public/psi/swdDetails/?sp4ts.oid=6943836&spf_p.tpst=swdMain&spf_p.prp_swdMain=wsrp-navigationalState%3Didx%253D%257CswItem%253Dob_137148_1%257CswEnvOID%253D4058%257CitemLocale%253D%257CswLang%253D%257Cmode%253D%257Caction%253DdriverDocument&javax.portlet.begCacheTok=com.vignette.cachetoken&javax.portlet.endCacheTok=com.vignette.cachetoken http://h20565.www2.hp.com/portal/site/hpsc/template.PAGE/public/psi/swdDetails/?sp4ts.oid=6943836&spf_p.tpst=swdMain&spf_p.prp_swdMain=wsrp-navigationalState%3Didx%253D%257CswItem%253Dob_133037_1%257CswEnvOID%253D4058%257CitemLocale%253D%257CswLang%253D%257Cmode%253D%257Caction%253DdriverDocument&javax.portlet.begCacheTok=com.vignette.cachetoken&javax.portlet.endCacheTok=com.vignette.cachetoken Wireless: http://h20565.www2.hp.com/portal/site/hpsc/template.PAGE/public/psi/swdDetails/?spf_p.tpst=swdMain&spf_p.prp_swdMain=wsrp-navigationalState%3DswItem%253Dob_128686_1&javax.portlet.begCacheTok=com.vignette.cachetoken&javax.portlet.endCacheTok=com.vignette.cachetoken PCI dev: http://h20565.www2.hp.com/portal/site/hpsc/template.PAGE/public/psi/swdDetails/?sp4ts.oid=6943836&spf_p.tpst=swdMain&spf_p.prp_swdMain=wsrp-navigationalState%3Didx%253D%257CswItem%253Dob_133237_1%257CswEnvOID%253D4058%257CitemLocale%253D%257CswLang%253D%257Cmode%253D%257Caction%253DdriverDocument&javax.portlet.begCacheTok=com.vignette.cachetoken&javax.portlet.endCacheTok=com.vignette.cachetoken Ethernet Controller: http://h20565.www2.hp.com/portal/site/hpsc/template.PAGE/public/psi/swdDetails/?sp4ts.oid=6943836&spf_p.tpst=swdMain&spf_p.prp_swdMain=wsrp-navigationalState%3Didx%253D%257CswItem%253Dob_133348_1%257CswEnvOID%253D4058%257CitemLocale%253D%257CswLang%253D%257Cmode%253D%257Caction%253DdriverDocument&javax.portlet.begCacheTok=com.vignette.cachetoken&javax.portlet.endCacheTok=com.vignette.cachetoken Webcam: (won't work until the graphics driver is properly installed). http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-131219-1&cc=us&dlc=en&lc=en&os=4158&product=6825117&sw_lang=  

Maybe you are looking for

  • How do i get an image to display????

    this is some code that i have developed to try to get an image to display. i realize that the arrays for images and sources aren't needed but i want to provide room for when i animate things. but i need to get them to display first. what am i doing w

  • Sending form results to a 2nd recipient

    I'm trying to modify the javascript line in my "contact" form to send the information (POST method) to a second email recipient. Here is the single-recipient code: <input name="Submit" type="submit" onClick="MM_validateForm('1','','RisEmail','textare

  • Strategy for converting HTML mockups to JSF

    This is a summary of our front-end development process: - designers create PNG mockups - UXers create HTML mockups - developers create final JSF Now, these HTML mockups are pretty complete. They use all our in-house JavaScript widgets, production CSS

  • Pricing Procedures MM

    Hi all, I have problem identifying the link between the schema group and the pricing procedure. Where is that in SPRO? And also, which transaction do i use to maintain the condition records? How do i know if the pricing procedure is for PO or for inf

  • Currency tranlation in case of Multiple group currency

    From SAP help: You want to report in two currencies on the subgroup level: You disclose the subgroup result in the first group currency while reporting the subgroup result to corporate headquarters in their group currency My scenario: I have subgroup