Comment utiliser labview sans la carte national instrument

je suis en stage.je dois piloter un spectromètre par labview.Mon maitre de stage veut utiliser les routine de labview.alors je ne c pa a quoi ca sert!!
est ce que je pourrai piloter ce spectro sachant qu'il est relié a l'ordi par un cable rs232.
Par ailleur, nous avons aussi un spectro mobile.est ce que nous pouvons effectuer un programme afin de le piloter par un ordi portable.Il sont reliés par une prise USB.
je supose qu'il faut de type de programme:l'un pour la prise usb et l'autre pour le cable rs232.
Le plus gros soucis c d'abord de savoir si on peut utiliser les routine pour ce genre de manip!!!
pour l'instant je n'ai pas tt compris moi meme.je ne fais que débuter dans labview et en plus mon maitre de stage n'y connais pas grand chose!!!

Qui t'as parlé de dll et pour faire quoi ?
C'est du code qui n'est pas développé sous LabVIEW (en général en C), mais qui peut être appelé par LabVIEW.
Par exemple tu peux peut être trouver des dll qui permettent d'envoyer des commandes à ton spectro, donc plutot que de refaire le code en LabVIEW, tu intègre ces dll dans ton code LabVIEW.
Je n'ai jamais fait ça, donc je ne sais pas comment intègrer une dll de C dans LabVIEW, mais si tu comprends l'anglais, il y a des 10aines de sujets la dessus sur le forum
D'ailleur de manière générale, ce forum est anglophone, si tu postes tes messages en anglais tu auras plus de chances d'avoir une réponse précise et rapide
When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"

Similar Messages

  • Comment utiliser un codeur avec une carte serie E et Visual Basic

    je dois acquerir les donnees venant d'un codeur incremental sur ma carte serie E et grace a un programme VB. Comment puis-je faire.
    Merci.

    Desole, je ne parle pas francais bien. Vous devriez avoir des exemples pour l'usage du dispositif de l'E-serie DAQ en Visual Basic dans le repertoire \Program Files\National Instruments\NI-DAQ\Examples.
    Chris Matthews
    National Instruments

  • LV runtime error in file C:\Program Files\National Instruments\LabVIEW 2010\CCodeGen\libsrc\os\rtx\LVThreads_rtx.c

    Hello,
    I tried to run my application on LM3S8962.
    The build succeeded. All LEDs are green,
    but the application doesn't run.
    The error message appears in the status window:
    [17:06:21] Status: Build Succeeded.
    LV runtime error in file C:\Program Files\National Instruments\LabVIEW 2010\CCodeGen\libsrc\os\rtx\LVThreads_rtx.c at line 141: 2 19
    This message isn't really enlightening to me.
    Doesn't anyone know how to solve the problem?

    Hi Peter,
    i tried to modify the code to isolate the problem.
    With the attached code the new error message appears:
    LV runtime error in file C:\Program Files\National Instruments\LabVIEW 2010\CCodeGen\libsrc\blockdiagram\CCGClusterSupport.c at line 141: 2 13
    What are the limits of clusters in LV ARM?
    My Toolchain:
    Tool Version Numbers:
    Toolchain:        RealView MDK-ARM  Version: 4.11
    Toolchain Path:    BIN40\
    C Compiler:         Armcc.Exe       V4.0.0.728
    Assembler:          Armasm.Exe       V4.0.0.728
    Linker/Locator:     ArmLink.Exe       V4.0.0.728
    Librarian:             ArmAr.Exe       V4.0.0.728
    Hex Converter:      FromElf.Exe       V4.0.0.728
    CPU DLL:               SARMCM3.DLL       V4.11
    Dialog DLL:         DLM.DLL       V1.19a
    Target DLL:             BIN\UL2CM3.DLL       V1.63
    Dialog DLL:         TLM.DLL       V1.19a
    Thanks
    Marco
    Attachments:
    ICUA4_SOURCE_DISTRIBUTION.zip ‏463 KB

  • Method not found: 'Void National Instruments.LabVIEW.Interop.LV Runtime.throw MissingDependencyException()'.

    Method not found: 'Void National Instruments.LabVIEW.Interop.LV Runtime.throw MissingDependencyException()'.
    My colleague created a Labview DLL for me to use in .NET.
    I have tried getting this DLL to work in 3.5 framework however it only worked on framework 2.0. 
    I recently tried again and now it will not work in framework 2.0 or any available frameworks.
    He is using Labview 2011. 
    I am a little baffled as to how the application just stopped working. The National Instruments Runtime I am using is Labview 2011, version 1.1.0.0. The labview dll he gave me is using 1.1.0.0 as well. I have tried using 1.0.0.0 and I get an error saying there is a mismatch.
    In addition, for some reason I was never successful in making this work in 3.5, and now I can't make it work in 2.0 either.
    Any help is greatly appreciated. I have tried re-installing the runtime engine, tried different versions like labview 2013 but no luck... 
    Everything works except when I call the dll procedure:
    LabVIEWExports.AxBClusterArrays(out ERR, out OUTDLL, INDLL);
    My Code:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Text;
    using System.Windows.Forms;
    using NationalInstruments.LabVIEW.Interop;
    using InteropAssembly;
    namespace WindowsFormsApplication1
    public partial class Form1 : Form
    public Form1()
    InitializeComponent();
    private void Form1_Load(object sender, EventArgs e)
    InteropAssembly.LVCluster_1 OUTDLL = new InteropAssembly.LVCluster_1();
    InteropAssembly.LVCluster_2 INDLL = new InteropAssembly.LVCluster_2();
    double[] TestA = new double[1];
    double[] TestB = new double[1];
    for (int runs = 0; runs < 1; runs++)
    TestA[runs] = 1;
    TestB[runs] = 1;
    INDLL.A = TestA;
    INDLL.B = TestB;
    NationalInstruments.LabVIEW.Interop.ErrorCluster ERR = new NationalInstruments.LabVIEW.Interop.ErrorCluster();
    MessageBox.Show(NationalInstruments.LabVIEW.Interop.FrameworkVersion.Fx35.ToString());
    try
    //LabVIEWExports LVE = new LabVIEWExports()
    LabVIEWExports.AxBClusterArrays(out ERR, out OUTDLL, INDLL);
    catch (Exception f)
    MessageBox.Show(f.Message.ToString());

    Figured it out, I thought we where using Labview 2011, however it was Labview 2011 SP1. 
    Thus i had to install the runtime envioment 2011 SP1.
    Regards,
    ADL

  • Where can I find VI Description & usage for VIs in Program Files\National Instruments\LabVIEW 2009\vi.lib\variable

    In the the said folder are many VIs.  They are all part of the NI_Variable.lvlib.    However there is no help or description (context help just shows the terminals and names) for many of these VIs.  Where can you find more 'help' on these VIs, the block diagram is password protected.

    Hi phillman,
    If there is no detailed help in the LabVIEW help, or on ni.com, you will probably need to ask about specific VIs for more detailed information. I would first search the LabVIEW help and the website, however.
    Let me know if you have specific VI questions!
    Take care!
    Tanya V
    National Instruments
    LabVIEW Platform Product Support Engineer

  • Connecting OPCUDS 2.5 to National Instruments' LabVIEW

    Has anyone had to work with National Instruments' LabVIEW OPC server and succesfully connected to it via the UDS 2.5?
    Currently trying to achieve this and am having major issues with the UDS crashing the LabVIEW service everytime it is started.
    Thank You!

    No experience but it could be because of a large volume of Tags on the server.
    What about any other OPC client?
    I had a nearly similar experience with RSLinx when the UDS seemed to stop responding everytime we started it (it did not affect the OPC server though) and finally what we found was, all the UDS needed was some time to actually establish the connection because of the large number of Tags on the server.

  • Using National Instruments LabVIEW with X-10

    Has anyone written a LabVIEW instrument driver/s
    for X-10 based devices?
    Just curious.
    Thanks,
    bonzo
    Sent via Deja.com
    http://www.deja.com/

    I have a simple driver that I wrote and posted at
    http://tuffriders.50megs.com/vics/download/X10/ . It communicates with the
    CM11 serial interface. National Instruments wrote a more thorough set of
    drivers and examples for the 1999 NIWeek but I don't know where to download
    it from.
    Best Regards,
    Neal Pederson, President, VI Control Systems
    1923 Mendius Lane, Los Alamos, NM 87544
    TEL: (505) 662-1461, FAX: (603) 388-4969
    [email protected], www.vicontrols.com
    wrote in message news:92d82o$hj0$[email protected]..
    > Has anyone written a LabVIEW instrument driver/s
    > for X-10 based devices?
    > Just curious.
    >
    > Thanks,
    >
    > bonzo
    >
    >
    > Sent via Deja.com
    > http://www.deja.com/

  • NATIONAL INSTRUMENT​S LABVIEW REALTIME V6.1, NI-488.2 V2.01, CNC CADCAM

    IAR, NATIONAL INSTRUMENTS LABVIEW REALTIME V6.1, NI-488.2 V2.01, CNC CADCAM
    IAR,
    Microwave Design Office 2002, Cadence, OrCAD, Protel, FPGA, VHDL,
    Natinst, Xilinx, Siemens Simatic, Labview, metrowerks codewarrior8
    [2CDs],
    other 20 gigabytes/week software for pc and mac
    send email for catalogue

    Hello,
    Which driver have you on your computer ? You can see them in MAX >> Software. Which is version of ni-visa, ni-488.2 ?
    What kind of protocol do you want to use : gpib, serial, parallel ?
    What ahhpens in AMX when you test your communication ?
    What are error code and error string ?
    Regards,
    Isabelle
    Ingénieur d'applications
    National Instruments France

  • Virtuosity, a LabVIEW based simulation event presented by National Instruments

    Apogee is the annual technical fest of BITS Pilani, a premier engineering college in India. Virtuosity is a LabVIEW based online simulation event organized as a part of Apogee 2012. The problem statements have been uploaded at http://www.bits-apogee.org/2012/Code_&_Simulate/Virtuosity/
    The event is open to all students. The solutions can be uploaded once you register at the site and for the event. The last date for submission of solutions is 12th of March, 11:59 P.M. Further details can be found at the mentioned link. Any doubts can be put forward at http://www.facebook.com/events/356951557669851/ .
    Thank You.

    Sounds like fun!
    Kind Regards,
    Thierry C - Applications Engineering Specialist Northern European Region - National Instruments
    CLD, CTA
    If someone helped you, let them know. Mark as solved and/or give a kudo.

  • Je suis débutant,j​e veus savoir comment commander moteur pas à pas avec labVIEW via la carte NI UMI-7764 merci

    je suis débutant,je veus savoir comment commander moteur pas à pas avec labVIEW via la carte NI UMI-7764 merci  

    abdelkhalk wrote:
    je suis débutant,je veus savoir comment commander moteur pas à pas avec labVIEW via la carte NI UMI-7764 merci  
    Pour commander un moteur pas à pas il faut également un controleur (NI-7330,7340 ou 7350) et un driver. Les controleurs NI viennent avec la librairie Motion I/O qui contient les VIs qui permettent de controler le moteur.
    Ben64

  • Analogic acquisition with Labview and National Instruments card

    I need to acquire 2 analogic signals simultaneously. I use version 4
    (maybe 5) of Labview, with a National Instruments data acquisition
    card (BNC-208x). I want to save the 2 signals in a text file. Does
    anyone could send to me a diagram (vi) for doing that.
    Thank you very much.
    (my email: [email protected])

    True simultaneous sampling is possible with only a few types of DAQ cards. I believe BNC-208x is like the current BNC-2xxx series and is nothing more than a adaptor to the actual DAQ card inside the PC. If you can live with the small delay between channels that the majority of DAQ boards has, then there are a number of shipping examples that can help you. Look for the Cont Acq&Graph examples and Data Logger to Spreadsheet File.

  • \National Instruments\LabVIEW 2011\vi.lib\addons\_office\excel.llb\Excel Set Cel

    \National Instruments\LabVIEW 2011\vi.lib\addons\_office\excel.llb\Excel Set Cel  with a broken arrow
    Attachments:
    error pic.png ‏27 KB

    version of Excel is 2010, but i have this problem with Excel 2007, Excel 2003. This property also has a problem in old  versions of  labview  (8.6; 9; 10).
    Attachments:
    excel1.png ‏86 KB
    pic2.png ‏4 KB
    excel version.png ‏38 KB

  • National Instruments PXI avec IEEE 802.15.4 standard

    Bonjour,
    En fait, je travaille sur  un projet qui a pour but d’implémenter un émetteur/récepteur Zigbee en bande de base reconfigurable sur la plateforme d'évaluation XUPV5-LX110T qui embarque un Virtex 5. Je suis actuellement dans la phase de test réel.
    Premièrement, Je veux envoyer mes données venant d’un pc vers un FPGA et de les recevoir (pour traiter mes signaux sur Matlab). Est-ce-que cette tâche est faisable ou non ? Y a-t-il une solution pour ça en utilisant un média de communication (la liaison série par exemple)
    Deuxièmement, Y a-t-il un équipement de mesure et de test de National Instruments à l’aide des PXI qui supporte le protocole sans fil Zigbee ou autrement la norme IEEE 802.15.4 (à savoir RF Vector Signal Generator et Vector Signal Analyzer) de la partie frontale analogique que ce soit en émission ou en réception?
    Et merci d’avance pour tout le monde.

    Bonjour,
    Si vous utilisez LabVIEW ou Lab/WindowsCVI ou n'importe quel logiciel National Instruments et nos cartes FPGA c'est tout à fait possible de le faire.
    En ce qui concerne la norme IEEE 802-15.4 vous pouvez communiquer avec un PXI 5660 par exemple.
    Accelerating ZigBee and 802.15.4 Module Testing with LabVIEW and an NI RF Vector Signal Analyzer /
    http://sine.ni.com/cs/app/doc/p/id/cs-744
    Brice S.
    National Instruments France

  • National Instruments PXI with IEEE 802.15.4 standard (ZigBee)

    Bonjour,
    En fait, je travaille sur  un projet qui a pour but d’implémenter un émetteur/récepteur Zigbee en bande de base reconfigurable sur la plateforme d'évaluation XUPV5-LX110T qui embarque un Virtex 5. Je suis actuellement dans la phase de test réel.
    Premièrement, Je veux envoyer mes données venant d’un pc vers un FPGA et de les recevoir (pour traiter mes signaux sur Matlab). Est-ce-que cette tâche est faisable ou non ? Y a-t-il une solution pour ça en utilisant un média de communication (la liaison série par exemple)
    Deuxièmement, Y a-t-il un équipement de mesure et de test de National Instruments à l’aide des PXI qui supporte le protocole sans fil Zigbee ou autrement la norme IEEE 802.15.4 (à savoir RF Vector Signal Generator et Vector Signal Analyzer) de la partie frontale analogique que ce soit en émission ou en réception?
    Et merci d’avance pour tout le monde.
    Hello,
    In fact, I'm working on a project which aims to implement a reconfigurable Zigbee tranceiver on XUPV5-LX110T Evaluation platform which integrates a Virtex 5 FPGA. I am currently in the phase of real test.
    First, I want to send my data from a PC to FPGA and receive it (to treat my signals on Matlab). Is this possible or not? If yes, Is there a solution for it using a medium of communication (e.g. serial link)
    Second, is there a measuring equipment and testing National Instruments using PXI which supports the Zigbee wireless protocol or otherwise IEEE 802.15.4 standard (i.e. RF Vector Signal Generator and Vector Signal Analyzer) of the analog front-end either in transmission or reception?
    And thanks a lot in advance for everyone.

    Hello,
    I am not sure what data you will be collecting, or how you intend on using the board. Perhaps you can explain your application a little bit more?
    Is the FPGA code already developed for your application with the XUPV5-LX110T board? As long as the developed FPGA code is able to communicate with your PC via whatever protocol you choose, then you can use that as a channel to send data back and forth. Since the board is capable of many different I/O connections, you can pretty much sending/receive data over which ever connection you prefer, Ethernet, RS-232, etc.
    Just to clear up any confusion, if you do not already have FPGA code for the board, this is not something you would be able to develop with LabVIEW FPGA programming. The XUPV5-LX110T board is not supported for programming its FPGA using LabVIEW FPGA. You can however, program in labVIEW to communicate data back and forth with the I/O you have chosen to connect with to your PC, such as Ethernet or RS-232, as mentioned above.
    As far as measuring equipment NI offers for testing with the Zibee (IEEE 802.15.4) wireless protocol in the PXI platform, if your application requires you to both transmit to, and received from the board, and then you would need either both a Vector Signal Generator and Vector Signal Analyzer, or a Vector Signal Transceiver. See the list below for some examples of what we have to offer.
    VSAs: NI PXI-5661, NI PXIe-5663E
    VSGs: NI PXI-5671, NI PXIe-5672/5673E
    VSTs: NI PXIe-5644R/5645R/5646R
    From my knowledge of ZigBee, you would be capable of communicating with the board using any of these devices.
    Matthew R.
    Applications Engineer
    National Instruments

  • Comment utiliser les données à la sortie de AI-Read (tableau mis à l'échelle)?

    Comment faire pour utiliser les données à la sortie de AI-Read (Type : Tableau mis à l'échelle)?
    Je souhaite écrire tous les points en colonne dans un fichier texte pour pouvoir les exploiter dans Excel. J'ai relié les données telles quelles au module 'Ecrire dans un fichier', mais quand j'ouvre le fichier texte, les données sont toutes les unes à la suite des autres : inexploitable dans Excel (dans mon cas, j'ai 1000 points par balayage, ceci étant répété jusqu'à la fin de la séquence et je veux pouvoir utiliser tous ces points). J'ai également essayé de reformater le tableau 2D en tableau 1D, mais quand je fais cela, je perds énormément de points. Je voudrais pouvoir les reformater pour les mettre en colonne, et ensuite tracer la courbe sous Excel.
    De plus, je souhaiterai utiliser ces points pour tracer la courbe sur la face avant de Labview (si possible en graph déroulant).
    Merci d'avance.
    Hélène

    Bonjour,
    Je vous conseille dans un premier temps de regarder et tester l'exemple d'enregistrement continu de données dans un fichier texte au format tableur qui est fournit avec LabVIEW (Menu Aide >> Recherche d'exemples... puis E/S Matérielles >> DAQ Traditionnel >> Entrées analogiques >> Stream to disk >> "Cont Acq to Spreadsheet File.vi").
    Cet exemple permet de stocker les points lus dans le buffer d'acquisition (sortie du AI Read) dans un fichier texte au format tableur (type Excel).
    Attention, les temps d'écriture dans le fichier ASCII et les temps de formatage des tableaux de données en chaîne de caractères au format tableur sont des facteurs limitants pour la fréquence d'acquisition (risque d'overwrite du buffer).
    Si vous voulez stocker en continu les données avec des cadences d'acquisition élevées, préférez le format binaire (sortie du AI Read au format I32 puis écriture directe par bloc des data). La aussi des exemples standards sont disponibles dans LabVIEW.
    Bonne continuation.
    Matthieu Gourssies
    National Instruments France.

Maybe you are looking for

  • Newb here has been put in charge of a small company network. Need help!

    I'm new to ARD, but well versed in Macs and OSX. A friend's family has a small company and the head honcho uses ARD to monitor the other Macs at the office from her iMac running 10.6.3 there at the office, as well as from home using another iMac and

  • Business package to be deployed for ESS/MSS in EHP4 SP11

    Dear SAP Gurus, Please let me know if ESS/MSS is integrated with EHP4 or I will have to deploy these packages to implement ESS/MSS. I found from SDN that if ERP Stack is 16 and EHP4 SP 4 and SAP_APPL is 600 SP4 and EA_HR,SAP_HR at 604 11, we need XSS

  • When will ios 7 be available for the iPhone 4

    Any ideas when iOS 7 is going to be available for download for iPhone 4 and 4s?

  • Tomcat installation prob: process not running

    Hi, I am trying to install Tomcat on a Solaris 9 box. (Am a beginner) Am done with the settings but Tomcat is not running. $cd $CATALINA_HOME/bin/ $startup.sh Using CATALINA_BASE: /export/amt/Tomcat/apache-tomcat-4.1.37-LE-jdk1.4 Using CATALINA_HOME:

  • Phone not ringing

    Since having Infinity installed I'm have a problem with one of my phones a BT Converse 300 it will not ring in any of the extensions, other than the non ringing it works ok. If I plug the phone into the face plate of the master socket it will then ri