Error 10403 at AO Buffer COnfig, PCI-6703

Using any of the solutions generated by the DAQ solution wizard (such as Custom Funciton Generator) for multipoint waveforms, I always get Error 10403 at the AO Buffer Config. I saw this problem posted earlier, but there was no solution.
Labview 6.0
NI-DAQ ver. 6.9.1
PCI-6703
Win2000
Any thoughts?
Thanks,
A. Flannery

Hi Tony,
First of all, I am not NI. I am just a guy who has worked with NI stuff and have learned what to look out for. All I can do is try to help, so here goes.
The -10403 error is the driver telling you that you are attempting something that is not possible. After reading your response, I broke out a catalog to figure what is up with the 6703.
First, the block diagram shows no on-board buffer. This is bad.
Second, the fine print (see page 396) shows that only "Programmed I/O" is available (see Data Transfers). This is also bad.
I would suggest you contact NI directly to discuss the posiblity of trading in the 6703 towards credit for an interface that will meet your needs.
If you have any other questions that you think I may be ab
le to help with, "fire-away" (just don't kill the messenger:<)) ).
Just trying to help,
Ben
Ben Rayner
I am currently active on.. MainStream Preppers
Rayner's Ridge is under construction

Similar Messages

  • AI Group Config error -10403 when using DAQPad-6070E

    I am using a DAQPad-6070E with attached device SCB-68.
    Yesterday, I was able to read in analog waveforms using the attached file. Today, without any changes made to the file, I get an error -10403 in AI Group Config.
    What could be causing this error since no changes were made in the file or in Measurement and Automation Explorer configuration?
    My system configuration is as follows:
    Windows XP
    Measurement and Automation Explorer v. 2.2.0.3010
    NI-DAQ v. 6.9.2f4
    LabVIEW v. 6.1
    Attachments:
    AIGroupConfigError.vi ‏256 KB

    I haven't been able to run your VI since I'm lacking one of the subVIs in your design, but taking a look I have a few suggestions. I noticed that the device and channels controls for AI Config are both hidden on the front panel. The default values for these controls should be checked to make sure that they agree with the device number in MAX. You could place a probe on all of the inputs to the AI Config VI and let us know what values are being sent.
    Also, try resetting the device driver through MAX, just in case another program did not release some resources that are needed by your VI.

  • Error 10403:AO Buffer Config (i just want to command an analog output)

    just wanna command an analog output with a little program using intermediate vi/but when i execute it an error 10403 appears/need sone to help me

    What type of DAQ device do you have? You can check the KB below about getting this error on certain boards.
    http://digital.ni.com/public.nsf/websearch/6ED30C2CBB5FF447862562C10056D61B?OpenDocument
    You might also try the simple example that ships with LabVIEW. Write N Updates.vi
    Hope this helps.

  • Error 10403 in "so config" in windows 2000

    Hi
    I am using Labview 7.1, I Installed it on Windows 2003 advanced server. I configured my sound card and execute my program without error. on the same computer, I had windows 2000 profesional, I installed labview 7.1 on it and compiled my program under windows 2000 on the same computer (and so, same hardware), but i recieved error code 10403 on my "so config" module! my sound card volume didnt work on windows 2000 by labview. what is the problem? does anybody know why?
    Best regards

    masoudk,
    So if I understand you correctly, when you run your program in Win 2000 as a VI, you hear sound but can't change the colume. If you then turn the exact same code into an executable and run it on the same computer, the program works correctly. Is that correct?
    Also, what is accessHW and once you installed it how did you problem "get less"? Is there any circumstance in which you don't get error 10403? Do you have the exact same drivers for your sound card installed in Win 2003, XP and 2000?
    Chris C
    Chris Cilino
    National Instruments
    LabVIEW Product Marketing Manager
    Certified LabVIEW Architect

  • PCI 1200 board 2 channel acquisition error -10403

    I have been acquiring single channel data using a PCI1200 board/Igor Pro 4.01 software and NIDAQ tools 1.22 on a Mac running OS 9.2.
    I want to acquire triggered data traces on two channels simultanously. While I am able to run the acquistion in a continuous mode, when I try to acquire a single time limited trace on two channels simultaneously i get an error -10403.
    Is this application possible using this board.

    Ben,
    Your description makes it sound like you are attempting to perform a finite acquisition of two analog input channels. This is definitely possible with the PCI-1200. The description of error -10403 is the following:
    "The specified device does not support the requested action (the driver recognizes the device, but the action is inappropriate for the device)."
    It appears that the IGOR NIDAQ Tools software is making a call to the NI-DAQ driver that is not supported by the PCI-1200. Thus, you may want to verify with WaveMetrics that the IGOR NIDAQ Tools software supports this particular operation. Below, I have included a link to their support resources:
    WaveMetrics Support Resources
    Good luck with your application.
    Spencer S.

  • C++ PCI-6703 Générer une tension analogique

    Bonjour,
    Je suis nouveau  sur Measurement Studio for VC++ et j'ai besoin de votre aide.
    J'ai une carte PCI-6703 avec un boitier SCB-68.
    J'ai installé les drivers nécessaires NI-DAQmx avec le Measurement & Automotion Explorer.
    J'ai installé le logiciel Measurement Studio 2009 (version d'évaluation en attendant la validation pour que mon chef de projet achète la version complète).
    Je travaille sous Visual Studio 2008 et sous VC++ (je ne peux pas utiliser LabView (sinon c'était plus facile) pour pouvoir synchroniser les codes de tout le projet).
    Je souhaite générer des tensions analogiques (10V) à la sortie de la carte PCI-6703 pour le boitier SCB-68. Ce dernier va envoyer les signaux à une carte électronique pour allumer/éteindre des leds.
    Je me suis bloqué au niveau de mon programme. J'ai essayé ces lignes de codes mais ça ne marche pas (je me suis inspiré des codes que j'ai trouvé sur le forum mais je pense qu'il a des lib qui ne collent pas) :
    #include <cvirte.h>
    #include "windows.h"
    #include <NIDAQmx.h>
    int main (int argc, char *argv[])
        TaskHandle daqmxhandle;
        if (InitCVIRTE (0, argv, 0) == 0)
            return -1;    /* out of memory */
        DAQmxCreateTask ("", &daqmxhandle);
        DAQmxCreateAOVoltageChan (daqmxhandle, "Dev1/ao0", "", -10.0, 10.0,
                                  DAQmx_Val_Volts, "");
        for(int i=0; i<10;i++)
         DAQmxWriteAnalogScalarF64 (daqmxhandle, 1, 10.0, 10, 0);
         Sleep(3000);   
         DAQmxWriteAnalogScalarF64 (daqmxhandle, 1, 10.0, 0, 0);   
         Sleep(3000);
        DAQmxClearTask (daqmxhandle);
        return 0;
    -----------------------------------------------Erreur----------------------------------------------------------
    1>------ Rebuild All started: Project: test1, Configuration: Debug Win32 ------
    1>Deleting intermediate and output files for project 'test1', configuration 'Debug|Win32'
    1>Compiling...
    1>test1.cpp
    1>c:\program files\microsoft sdks\windows\v6.0a\include\winnt.h(7256) : warning C4005: 'THREAD_BASE_PRIORITY_MIN' : macro redefinition
    1>        c:\program files\national instruments\measurementstudiovs2008\vcnet\include\cvidef.h(140) : see previous definition of 'THREAD_BASE_PRIORITY_MIN'
    1>c:\program files\microsoft sdks\windows\v6.0a\include\winnt.h(7257) : warning C4005: 'THREAD_BASE_PRIORITY_IDLE' : macro redefinition
    1>        c:\program files\national instruments\measurementstudiovs2008\vcnet\include\cvidef.h(143) : see previous definition of 'THREAD_BASE_PRIORITY_IDLE'
    1>Compiling manifest to resources...
    1>Microsoft (R) Windows (R) Resource Compiler Version 6.1.6723.1
    1>Copyright (C) Microsoft Corporation.  All rights reserved.
    1>Linking...
    1>test1.obj : error LNK2019: unresolved external symbol _DAQmxClearTask@4 referenced in function _main
    1>test1.obj : error LNK2019: unresolved external symbol _DAQmxWriteAnalogScalarF64@28 referenced in function _main
    1>test1.obj : error LNK2019: unresolved external symbol _DAQmxCreateAOVoltageChan@36 referenced in function _main
    1>test1.obj : error LNK2019: unresolved external symbol _DAQmxCreateTask@8 referenced in function _main
    1>test1.obj : error LNK2019: unresolved external symbol _InitCVIRTEEx@12 referenced in function _main
    1>C:\Documents and Settings\Default\Mes documents\Visual Studio 2008\Projects\test1\Debug\test1.exe : fatal error LNK1120: 5 unresolved externals
    1>Build log was saved at "file://c:\Documents and Settings\Default\Mes documents\Visual Studio 2008\Projects\test1\test1\Debug\BuildLog.htm"
    1>test1 - 6 error(s), 2 warning(s)
    ========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ==========

    Bonjour,
    Votre problème vient du mode d'acquisition : votre tache fait l'acquisition d'une seule valeur (échantillon) à la fois.
    Ce qui vous limite alors, c'est la vitesse de votre cpu : la boucle while (d'ailleurs le wait 0ms est inutile) tourne a vitesse maximale, mais non cadencée ! Votre calcul est donc complètement faux.
    Pour résoudre ceci, il faut acquérir N échantillons, et faire un traitement sur le tableau de valeurs pour en déduire la fréquence directement (il y a des vi's déjà créés pour cela)
    En espérant que cela vous aide,
    P.S. vous avez posté sur le forum anglais, la prochaine fois, faites le dans la communauté française, vous aurez une réponse plus rapidement.
    Bonjour,
    Votre problème vient du mode d'acquisition : votre tache fait l'acquisition d'une seule valeur (échantillon) à la fois.
    Ce qui vous limite alors, c'est la vitesse de votre cpu : la boucle while (d'ailleurs le wait 0ms est inutile) tourne a vitesse maximale, mais non cadencée ! Votre calcul est donc complètement faux.
    Pour résoudre ceci, il faut acquérir N échantillons, et faire un traitement pour en déduire la fréquence directement.
    En espérant que cela vous aide,
    V-F

  • Error 10403 in Virtual channel Test Panel, but test pannel for device works fine

    I am using a simple 10x probe attatched to the NI5112 PCI card. When the device is tested under the devices and interfaces part of MAX, I get the scope input, when I test the virtual channel for the scope, i get error 10403. How can i resolve this?

    The reason you get that error is that virtual channels are not supported with our high-speed digitizers. Only devices that can be programmed directly with NI-DAQ support virual channels. The legal way to address a high-speed digitizer is by using DAQ::N, where N is the device number in MAX.

  • Error 1328.Error applying patch to fileC:/Config.Msi/PTEADA.tmp.It has probably been updated by other means, and can no longer be modified by this patch.For more information contact your patch vendor

    hello,
    After installing the Adobe reader, I got the following error message:
    Error 1328.Error applying patch to fileC:/Config.Msi/PTEADA.tmp.It has probably been updated by other means, and can no longer be modified by this patch.For more information contact your patch vendor

    For AA XI, you only need the 11.0.09 patch. Download from http://www.adobe.com/support/downloads/product.jsp?product=1&platform=Windows (Use "MAC" if a MAC is used).

  • Error 1310 while installing itunes, config.msi folder missing, Vista home edition.

    I get the following error when installing itunes 10.5.3 on my Windows Vista 32Bit premium home edition:
    Error 1310. Error writing to file: C:\Config.Msi\4361d.rbf. Verify that you have access to that directory.
    I cannot find the folder mentioned above.

    I have the same problem. I've tried tons of ways to solve that. Finally I suceed today.
    I closed all the antivirus and computer/device backup programs and elevate the pession of Config.Msi folder to the current user (by right clicking the folder, add the name of current account under security tab).
    Then I reinstalled the updates, it worked fine.
    I think one of those methods may be enough to solve the problem, but I'm not sure which is.

  • "Error writing to file: C:\config.msi\3a3043.rbf. Verify that you have access to that directory. "

    I keep getting this error when trying to update iTunes: "Error writing to file: C:\config.msi\3a3043.rbf. Verify that you have access to that directory."  iTunes will not work.  Any time I try to apply settings iTunes locks up.  Anyone know how to fix this?

    I had this exact same problem just now, trying to upgrade to 10.7.
    I even got that error msg when trying to UNINSTALL iTunes!
    After hours of frustration trying everyone's different suggestions, I downloaded Revo Uninstaller http://www.cnet.com.au/apps/revo-uninstaller-10610875/ which solved the problem.
    Use it to help uninstall iTunes and related software components in the following order and then restart your computer:
    1. iTunes
    2. QuickTime
    3. Apple Software Update
    4. Apple Mobile Device Support
    5. Bonjour
    6. Apple Application Support (iTunes 9 or later)
    Then you can install iTunes from scratch.
    Good luck

  • When downloading iTunes 11.0.3 I get an error 'Error writing to file C:\Config.Msi\1c6fd5.rbf.  Verify that you have access to this directory' what do I do?

    When downloading iTunes 11.0.3 I get an error 'Error writing to file C:\Config.Msi\1c6fd5.rbf.  Verify that you have access to this directory' what do I do?
    Appreciate any help thanks,
    Will

    Hi WillHunt112,
    Welcome to Apple Support Communities.
    You may find this article helpful for troubleshooting your iTunes installation:
    Trouble installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/HT1926
    Best,
    Jeremy

  • Error message while instilling. ''Error writing to file: C:\Config.Msi\5ad33.rbf. Verify that you have access to that directory

    I tried instilling 11.0.2 and couldn't and had to go thought tools and download only now I am instilling it got over half way and i get the error message ''Error writing to file: C:\Config.Msi\5ad33.rbf. Verify you have access tothat directory'' What do I do?????

    Are you running Kaspersky security software on that PC? (There's been a few reports in recent times of Kaspersky interfering with iTunes installs, with that message being produced.)
    If there is Kaspersky on board, we should try some general-principles getting-past-security-software-interference troubleshooting.
    Download and save a fresh copy of the iTunesSetup.exe (32-bit installer file) or iTunes64Setup.exe to your Hard drive. (Don't run the install on line, and don't start the install just yet.)
    http://www.apple.com/itunes/download/
    Restart the PC. After the PC restarts do not open any applications. Disconnect from your network and/or the internet. Now switch off all your security software (firewall, antivirus, antispyware).
    Now start the install by doubleclicking the iTunesSetup.exe (or iTunes64Setup.exe) file you downloaded earlier.
    Reenable all security software prior to reconnecting to your network and/or the internet.
    Any better luck with the security software shut down?

  • Itunes error writing to file: C\Config.Msi\165996.rbf verify that you have access to that directory

    itunes error writing to file: C\Config.Msi\165996.rbf verify that you have access to that directory
    That's the error I get when trying to uninstall or reinstall my itunes.  The application no longer works and I just purchased a new Ipod touch 4th generation that requires I uninstall and upgrade to 10.6.

    I had this exact same problem just now, trying to upgrade to 10.7.
    I even got that error msg when trying to UNINSTALL iTunes!
    After hours of frustration trying everyone's different suggestions, I downloaded Revo Uninstaller http://www.cnet.com.au/apps/revo-uninstaller-10610875/ which solved the problem.
    Use it to help uninstall iTunes and related software components in the following order and then restart your computer:
    iTunes
    QuickTime
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support (iTunes 9 or later)
    Then you can install iTunes from scratch.
    Good luck

  • Blu-ray Error: fatal error, code 6, audio buffer underflows...

    Ughh.... So its been a few months since I stopped using CS6 Encore because it loves to crash for all kinds of bad reasons. Today I needed to do a new project, and used a simple 1920x1080p MP4 file created by Adobe Media Encoder, and used a basic menu template in Encore. Also added a slideshow timeline with one Mp3 audio set to loop. During the building image part of the build process, I get the fatal error code 6, audio buffer underflows. Total bitrate too high neat time = 0.00000 seconds -
    First off, I set the BR transcode setting to auto and it spends  pleanty of time transcoding the file to a 15mbps bitrate, so why is Encore not first taking care of all the source files correctly in transcoding...?

    Ok.... 100% the fault of the software. I am an SE, and build systems all the time for my business, so if I knew of these simple problems, Id go into the code and devise a solution...please Adobe, fix Encore.
    Here are my simple finding from solving this problem (first post):
    - Of the 2 simple Mp4 files produced by Media Encoder, one, which runs only 2 minutes, had a peak of a little over 10mbps. I dropped the file back into Encoder and set the same mp4 profile to max of 6mbps and then replaced the file in the encore project, ran build and it worked fine.
    SO.... If I can use a simple free bit of software to look at the bitrate of a file (google Bitrate Viewer) and determine that the peak was possibly too high, why oh why cant adobe write a better transoding logic algorythm to decide if a video in a timeline needs to be reprocessed at a slightly lower bitrate before just attempting a build and then throwing an error. For the love of all that is holy, please tweek your transcoding decision process to prevent these simple errors.

  • I obtain error -10003 from AI hardware config when I use AC coupling

    I am using a function generator to make a sine wave and I want to obtain the data. However, there is an error 10003 at AI hardware config when I use AC coupling and I am not sure why?
    Attachments:
    Motor_Current_Measurement2.vi ‏133 KB

    What model DAQ board are you using. There's only a couple from NI that support AC coupling.

Maybe you are looking for

  • Help with Applescript

    Hi there, thanks in advance for any help on this ... I have an excel spreadsheet export from our back-office that exports product information from our shop. I want this to be reformatted slightly using AppleScript An example of our workbook is as fol

  • Error in :Posting keys for account determination

    Hi, Gurus,       please suggest the solution for the following problem.             we are selling two  types of materials, one is the  product material and the second one is the scrap material.Different type pricing procedures, sale order,delivery a

  • Passing blob from app layer to web layer

    Hi, We have some PDF files stored in Oracle database. I can retrieve them out using the ejb's from the app layer, but can not pass it to the web layer as a blob. I guess blob data type is not serializable. Appreciate any suggestions. Adam

  • Steps To Create Physical Standby Database In Windows 7

    Hi All, I want to create a physical standby database in my windows 7 system. I have created one service stdby in my machine with all your help and now I need your help to configure standby configuration. I am using Oracle 10G version 10.2.0.1.0. Plea

  • Remove a meeting on specific time date and subject line

    Hi I have a situation where a meeting organizer is no longer able to update or cancel a meeting she booked. Some how she also became the participant of the meeting and now has lost control of the actual meeting. Not able to edit or send update. I've