NOR-Serial 15.0 in LabVIEW 2016?

I downloaded the installation from the web of LabVIEW files, and after the installation I noticed that all the drivers I installed (DAQ - mx, NI-VISA, NOR-RIO, etc.) except NO-Serial are on version 16.0.  OR Serial is version 15.0.  Is this correct? or I have a bad download?  I actually not had problems with it yet.  I wonder if someone can confirm if this is correct as I well that all drivers would be on version 16.0.

Thank you

DR2

Hello dr2.

NOR-Serial 16.0 is not released at the present time. The real version is 15.0 then everything is OK.

Tags: NI Software

Similar Questions

  • Support for LabVIEW 2016

    Can someone tell me what VirtualBench drivers will be available for LabVIEW 2016?

    Release date is... right now! NOR-VirtualBench 16.0, with the help of LabVIEW 2016, is available here:

    (My apologies for yesterday, does not but it takes a little while to download pages to go live.)

  • Is LabVIEW 2016 fully 64-bit compatible?

    Also recently as in 2015 of LabVIEW, the 'conventional wisdom' (which, I admit, I followed myself) was "install LabVIEW to 32 bit on 64 bit Windows , unless you were really given Big stuff on a PC with a lot of memory.  I (bad?) believed that this was particularly important with device drivers and possibly with RT I also (I thought) heard that NEITHER was currently heading LabVIEW on a platform 64-bit "pure".

    I wanted to ask OR the week, but in the excitement of it all, I forgot - should now consider us install LabVIEW 64-bit on Windows 10 x 64 platforms?  What LabVIEW RT platforms, including PXI controllers?  [Hmm - I didn't follow my own advice on the Forums and do a simple Google search - just a second...]

    OK, the Web seems to say that LabVIEW 2016 has "more support for 64-bit computing".  Maybe now is the time to take another piece of my own advice and "experience" - maybe I'll build a 'pure' 64-bit system and see if I can port my LabVIEW RT code for her...

    Bob Schor

    OK, the answer to my question is "No."  NOR, we have

    • The Time Module is only compatible with LabVIEW (32 bit). Therefore, you must have LabVIEW (32-bit), even if you use a 64-bit operating system.

    Bob Schor

  • Executables LabVIEW 2016

    Hello

    I installed LabVIEW 2016 from 2015.  However, when I deploy my project it does not work.

    After some debugging, I found that it is because of the Application.Kind.  Instead of Application.Kind "Run-time" to return it now says "kind of application not valid."  Is this a known issue?  Is there a better way to determine the path?

    Thank you, Sean

    In 32-bit LV2016, it works for me.  You have the cluster of wired error upward?  If so, a mistake in inbound would result in this kind of invalid application of return.

  • LabVIEW 2016 high RAM usage

    I just upgraded to LabVIEW LabVIEW 2015 2016. Previously, I had no problem of memory. With 2016, however, even though I have a few screws open, rest, only LabVIEW uses 3 GB of my RAM. As I only have 4 GB, it slows down my computer to a crawl. Everyone knows these problems with 2016 or someone has a solution to reduce the amount of RAM LabVIEW requires? Thanks for the help.

    One of my colleagues has some portable "cheap" that are configured in the same way with minimum memory (4 GB).  Even when you are running Windows XP (which, in my view, is smaller and needs less RAM than, say, Windows 08/07/10), it has been very slow to do anything (can you say 'Wait 5 minutes for the OS to load'?).

    When Windows is "do its thing" correctly, it usually creates a swap file so that the software can use more than 4 GB of storage space for himself.  As I have indicated in my answer, LabVIEW 2016, when loading, seems to take a small fraction of this (a few hundred MB), even with the open code diagrams and block.  However, if your PC takes several minutes to start, runs very slowly in doing routine tasks and is an 'old' or ridiculously short of memory, it may be wise to (a) upgrade your memory (if you can), or (b) to upgrade your PC to the less a machine with 8 GB.  Remember, you use the PC to run LabVIEW, a solid programming / Data Acquisition/Platform Instrument I/O, surf the Web, send e-mail, or (hmm, I was going to say 'play', but games moves too, and tend to put more demands on the LabVIEW PC material, so both worse...).

    Bob Schor

  • How can I contact Adobe to request Adobe Acrobat 9 Extended license? I have the Bill, but I can't find the installer, nor serial number

    Hello, how can you contact Adobe to request Adobe Acrobat 9 Extended license? I have the Bill, but I can't find the installer, nor serial number

    [personal information... [Mod - https://forums.adobe.com/docs/DOC-3731]

    [This is an open forum, not the Adobe support, please do not post personal information]

    Hi Virgina97724206,

    If you are unable to retrieve your serial number and the installer through the links provided by John, you can contact customer service via chat. Cat representatives are unable to technical troubleshooting for older software like Acrobat 9, but they can get your serial number or answer questions about licensing.

    Best,

    Del

  • LabVIEW 2016 NI_ReportGenerationToolkit error

    I upgraded to Labview 2015-2016, but when you open one having previously worked for the project I now see an error in the NI_ReportGenerationToolkit.lvlib:Excel_Save_Workbook.vi.

    He tells me that the invoke node contains terminal unwired or bad.  However, it's a NOR provided VI and has not been changed between updates. Please let me know if it is a solvable issue.

    Take a look at this thread.

    Ben64

  • How to read the Serial Arduino data using labview VISA?

    Hi =). Im a beginner work reading data series from an arduino but im facing... Lets do it step by step

    I built a voltage divider circuit which gives from output
    from 0 to 5V. The output of this circuit is sent to a 0 analog input pin
    of a Committee of Arduino Duemilanove.

    (1) Firstly, I connected the cable to connect to my laptop USB the Arduino.

    (2) I went to start-> control
    Control Panel-> system-> hardware-> Device Manager. Check the Ports (COM
    & LPT). In my laptop I can see USB Serial Port (COM4). Now I know only in
    LabVIEW that I must read the data series COM 4.

    (3) to the side of the arduino, here's the code to read changes in voltage
    entered to analog pin 0. The last line of 'delay' determines the sampling
    Rate of how we want to taste the output of the voltage divider:

    int potPin = 0;    Select the input pin for the output of the voltage divider
    int val = 0;       variable to store the value from the probe

    void setup()
    {
    Serial.begin(9600) (9600);    Opens the serial port, establishes the rate of 9600 bps data
    }

    void loop() {}
    Val = analogRead (potPin); read the value of the voltage divider
    Serial.println (Val);
    Delay (10);
    }

    I slightly modified the basis series reading writing VI... I have
    attached the block schema used with comments. Basically, I tried to read
    data series, divide by 1023 and multiply by 5 to graphic voltage
    variations of the voltage divider circuit.  But Im not getting
    the correct voltage output values. The value of the tension just keeps go
    0 and coming again, as shown in the photo.

    Could you guys please guide me on what went wrong?

    Thank you!

    -you read the data, even if there is no data on the port. If 0 bytes are read => «»

    -in the case of false, you resources VISA wired for the output of channel tunnel?

    -There is no close VISA at the end of the VI resources

    -you're not a loop this VI reading bytes

    I added an addaption of your VI that you should give a try maybe

  • Installer and labview 2016 app builder

    After building an executable on a computer and install it on another with the installer nor, overlap the controls on the front panel, the fonts and graphics (box high etc.) are banging on each other overlap with other objects, text etc. How can I solve this problem? Course made window size was set to maintain proportions on different monitors. Installer has a file XXXXX.ini (name of my startup vi) but no labview.ini (configuration information?). Any ideas? Thank you.

    Right click on your screen on the Windows desktop, select Customize, and then select Show. Check that the fonts are on either 100, 125 or 150%. According to what has been defined when you generated your VI, this could be the difference. You can change it to match the other computer or follow these steps.

    Edit the INI file for your Application with the following lines:

    FPFont = "Segoe UI" 15
    appFont = "Segoe UI" 15
    dialogFont = "Segoe UI" 15
    systemFont = "Segoe UI" 15
    BDFont = "Segoe UI" 15

    (Use your & size of font, Segoe UI is Windows 7 by default).

    See you soon,.

    McDuff

  • Setup of NOR-time with MAX in LabVIEW 2010

    Hello

    I have a set of PXI systems running LabVIEW 2010 RT and want to start using NOR-time for my timestamp.   My systems have NEITHER time 1.0.1 installed and NEITHER-Sync 3.2.1 installed.  I have a system with a PXI-6682 card in slot 2 and got got to pull time of a GPS antenna.

    When I go to MAX on any of these systems, I briefly see "search sources of synchronization of time...". "in the settings of the time and then nothing.  I do not see the fields displayed in this screenshot:

    http://zone.NI.com/DevZone/CDA/tut/p/ID/11466

    What Miss me?

    You reply to my message, looks like it is is not currently supported in NO-time 1.0.1 in MAX and will not be until the next version of NO-time.

  • Problem setting Legacy DAQ board using NOR-DAQ 6.1 for Labview

    I know that the Board of Directors is an old legacy product not supported by NEITHER, however for a low-budget project, I have 3 of these AT-MIO-16 x cards and the need to use them.

    I know I got this job in the past not distant os, however, for the life of me can't get things sorted and work.

    You use a NT box, in which this configuration used to work... uninstalled and started fees for other reasons, and I can not get the NOR-DAQ 6.1 to support LAbview 6.1 or 7.1.

    Of course, I understand the OR-DAQ 6.1 should be used for Labview 5 and older, but also know this has been successfully done in the past.

    I downloaded all knowledge base articles dozed or both support and remember to use successfully the last time that I set up so I know not somehow it works.

    My configuration is: AT-MIO-16 X to the bus combo board (called work)

    NT PC

    LabVIEW 6.1 or 7.1

    NOR-DAQ 6.1 is the most recent to support this card.

    However, it will not install its support to its latest versions of Labview and I get errors, crashing, or missing files, when I followed various circumvention of knowledge base solutions.

    I was hoping that someone has a documentation somewhere how to handle this, because it really is a matrix of spaghetti.

    I can get NOR-DAQ support files installed, and Configuration Manager works well, finds the map and allows its parameters to be defined.

    But when I load the DAQ vi of any type, Labview accidents and the wizard of data acquisition channel does not work at all (no error).

    Thank you

    Yes, the installation program from the folder of disks for NOR-DAQ 6.1 on the ftp site has worked well.

    Workaround. Thank you

  • Attributes in NOR-Max not found in Labview

    I'm currently developing a LabView tool (2011) with a camera from Manta G504B Ethernet. It is NOR-compatible IMAQdx but in NOR-MAX attributes are not the same as those found in LabView. I would like as my tool developed to be able to change the exposure and acquire values and lifestyles. However, these attributes do not appear in LabView but appear in NOR-MAX. is it possible to get these attributes in LabView, since these values will change very frequently?

    My Manta firmware is 00.01.44.00

    NOR-IMAQ is 4.6.1

    E/s-OR-IMAQ is 2.5

    NOR-IMAQdx 3.8.1

    NOR-MAX 5.0.0f1

    Answer was found with the example OR grab and Attributes.vi base.

  • Serial Communication issue - packed LabVIEW library used in the Scripts of TestStand

    Hello

    I have developed a RS422 driver in LabVIEW for the basic operation is as initialize, reading, writing, closing etc. Later I used it as a library wrapped in TestStand scripts.

    The question is, when I try to read the answer to one of the command, I am able to observe it in the iteration 6th step of reading, where I'm supposed to read for the first time.

    Please suggest any ideas on what could be the reason.

    You need to know if the response data really who arrives late, after giving a command or the VI you wrote is not able to capture the correct data.

    If you have a recorder RS 422 or bus Analyzer then it will be easy to analyze the cause.

    Since you are able to read step 6 on reading a few questions:

    You are still able to read on the 6th read-only? If yes then probably the target USE responds slowly to this command or it sends too much unnecessary data that are read by the 5 first readings. (depends on your reading algorithm).

    Playback vi must be written such that it will be in a loop (with some time out) until it gets the required data. The expiration time should be configurable.

    Also before sending the order you must ensure that the buffer is empty (rinsed).

    I hope this helps.

    Ravi

  • How to fix the error of Labview 2016 (32-bit) on Windows 10 database.

    Hello

    I have software to read/write of labview (32-bit) database, which works fine on windows xp 2000 / 7 (64-bit). But it is not stable 10 (64-bit) Windows at all.  It pops up an error on most of the time. Please see the attached database VI. After starting my software, usually, there is no error on the face of the database of frist. but it pops up an error when opening the database section. the East-2147418113 error code. It seems that it will be more stable if I put more than a few seconds before you open the second database.

    Could someone help me understand how to solve this problem?  Enjoy.

    Steven


  • How to create a stop button to send commands via the serial port and finish labview vi?

    I want to send two commands on my camera, the first to stop the execution and the second to get out of the remote control mode. This is done on RS232. What I want is a way to put this in my existing VI that tells the device to run. Now if I stop the program, that the devices just run the last command unless I have stop manually. How can I set up a stop button that are not sent to all orders except in such a hurry? I tried the structure of the case, but didn't know how to put a part of 'status quo' If island stops in the while loop is not pressed the button.


Maybe you are looking for