Using FPGA and Labview without RIO board.

Dear Sir
I am a student. I want to connect my own FPGA and make a program on labview and then transfer to FPGA.I do not want to buy RIO.Is it possible to work
like that without purchasing RIO.
Thanks a Regards

Hooovahh wrote:
Yes NI supports programming FPGAs using LabVIEW without RIO boards I've been doing it for years and it works great.  Here are a few non-RIO products I've used LabVIEW FPGA with.
PCI-E Version
PXI Version
USB Version
The PCIe and PXI cards you mentioned are specifically RIO.
But you managed to program a USB-6225 with LV FPGA?  I'm not even sure there is an FPGA on there to program.  It is an M series DAQ board.
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines

Similar Messages

  • Using Workspaces and Chat without OCS E-mail

    What are the limitations if I to use all the other OCS components except E-Mail ?
    For example, can I still use Workspaces and Chat without OCS E-mail ?

    Hello,
    To see if it's your provider, What's my ip...
    http://www.whatismyipaddress.com/
    Start with these three, check SpamCop or SpamHaus to see if your IP is there...
    http://spamcop.net/bl.shtml
    http://www.spamhaus.org/lookup.lasso
    http://www.spamhaus.org/zen/
    Sometimes an ISP will bloc a whole other ISP too, if it's the source of too much SPAM.
    Might also see this post by Gallomimia...
    http://discussions.apple.com/message.jspa?messageID=9465359#9465359
    If none of those are it, then report back please.

  • I have an iphone 5s and my kids have ipods. How do i set up the ipods to use facetime and messaging without it going through my iphone?

    i have an iphone 5s and my kids have ipod touches. How do i set up the ipods to use facetime and messaging without it going through my iphone or rather using my apple id? Is this possible? Does each device need its own apple ID and/or icloud email?

    Try unchecking your phone number and email address (if present) under You can be reached by FaceTime (iMessage) at in Settings>Messages>Send & Receive and Settings>FaceTime on their devices.  Also uncheck their email address (if present) on your phone.
    Otherwise have them use separate Apple IDs for these services (tap the ID, sign out, sign back in with a different ID).  You can do this and still share the same ID for other services such as iTunes.

  • How to start with FPGA and LABVIEW when you do not know any computer language? Only have exposure to Windows OS.

    Myself is an Electronics Engineer. But I don't have any exposure to any comp language like C or whatever. I do not have any exposure to Labview as well. I've been involved in design and developing Digital Circuits like interlock units, Position monitoring and display systems etc. Now I want to work upon FPGA based circuits. Can anyone suggest me plz that how to start with?  

    Hi BNarendra;
    Here are some resources that can be useful, the first is an introduction to LabVIEW and the other ones are for LabVIEW FPGA.
    LabVIEW
    http://zone.ni.com/devzone/cda/tut/p/id/5247
    LabVIEW FPGA
    http://www.ni.com/swf/presentation/us/labview/lvfpga/default.htm
    http://digital.ni.com/public.nsf/allkb/0697A6F4BFC6E152862570FA0072153A?OpenDocument
    http://zone.ni.com/devzone/cda/tut/p/id/3261
    I hope the information is useful.
    Good Luck!
    Francisco Arellano
    National Instruments Mexico
    Field Systems Engineer - Energy Segment
    www.ni.com/soporte

  • Max6675 for k-type thermocouple temperature reading using arduino and labview

    Hi; I am trying to measure temperature using arduino mega +labview 2013 +k-type thermocouple+max6675.
    I am using LIFA interface.
    The circuit digram  and labview file is attatched
    I am stuck on spi read/write palet. How to read 12 bit max reading and convert it to temperature in degree celcious?
    Max6675 produce output in 12 bit, and measure 0-1023 centegrade. According to this the
    Temperature (C0)= max6675 output (12bit)* 0.25. how to set this formula in labview?
    Pin connections are
    Max6675 breakout board pins
    Arduino Maega Pins
    GND
    GND
    VCC
    5 VOLTS
    SO
    50
    CSK
    52
    CS
    12
    Attachments:
    max6675.vi ‏38 KB
    max6675 vi diagram.png ‏42 KB

    Hi Saeed780,
    We have a discussion board specifically for questions about using the LabVIEW Interface for Arduino. Can you please post your question to the Arduino board?
    www.ni.com/arduino
    Catherine B.
    Applications Engineer
    National Instruments

  • Servo motor control using MCB2300 and Labview

    Hello Everyone,
    I have to drive servo motor using MCB2300 board and labview. I am new to LabView as well as MCB2300 board. I understand that I have to generate Pulse to control the servo motor. 
    I have gone through some of the post but could not find something useful. 
    I need to do it asap, a fast and eloborating answer is much appreciated. 
    Thanks is advanced.

    I don't know if this will help you, but think about this tip:
    On the back of my (digital-) Servo package there was some data written (see attached image).
    You've heard of PWM (Pulse Width Modulation)? If not look it up in
    wikipedia / microcontroller.net / (if you speak german) http://www.rn-wissen.de/index.php/Servos or google
    The description of the Servo says that I have to send every 200ms +/- 1ms a positive (+5V +/- 1V) signal with a length depending on the angle I want the Servo to be set. The Signal is coded in conjunction to time, which means, as longer the Signal as higher the angle is. The Signal range is in between 70 to 240 ms (with my servo and not exactly). The Signal must repeated every 200 ms like I said before. I don't know, if you understand C but here is a function I wrote, which works fine for me:
    void set_Servo_0(uint8_t angle)
      DDRA |= 2; // Specific Port declaration for my µC (Atmel)
      uint8_t tick; // a var to count how often I send my Signal
      for(tick = 0; tick < 2; tick++) // loop to count -> send Signal three times
        if(getStopwatch1() > 200)  // getStopwatch is a libary specific function to measure time in ms steps
          PORTA |= 1;  // port high
          sleep(angle);  // angle comes from outside the function, it is a parameter for this function. Sleep for this time with port high = pos Signal
          PORTA &= ~1;  // then pull down
          setStopwatch1(0); // reset the timer 
      mSleep(250); // Finally I have to wait for this time (in ms) when I send different angle parameters one after another, to let the whole system
                          // (µC + Servo and rest of program) to settle down, else I will loose signal steps due to incorrect timing (not nice, but works).
    This function gets the angle as Integer from 7 to 24 and puts the Servo in corresponding position one time.
    Maybe You can adapt it, good luck.
    Attachments:
    Servo.jpg ‏207 KB

  • I am using fieldpoint and labview to log and monitor the temperatur​es of my system. but i am not using Labview 6i with DSC, how can i do it??

    i am using fieldpoint 2.0 and labview 6i to monitor my system, but i think i don't have labview DSC.

    I have written a relatively large Fieldpoint application "just" using LV5.1 FDS, so it can be done.
    Fieldpoint can be seen as an external instrument, so you need to use the driver/vi's that comes with FP.
    I believe using DSC would only make the job easier for you.

  • Want To create Zip file  using java,And Unzip without Java Program

    I want to create a zip text file using java, I know Using ZipOutputStream , we can create a zip file, , But i want to open that zip file without java program. suppose i use ZipOutputStream , then zip file is created But for unZip also difftrent program require. We cant open that zip file without writing diff java program.
    Actually i have one text file of big size want to create zip file using java , and unzip simply without java program.Its Possible??
    Here is one answer But I want to open that file normal way(
    For Exp. using winzip we can create a zip file and also open simply)
    http://forum.java.sun.com/thread.jspa?threadID=5182691&tstart=0

    Thanks for your Reply,
    I m creating a zip file using this program, Zip file Created successfully But when im trying to open .zip file i m getting error like "Canot open a zip file, it does not appear to be valid Archive"
    import java.io.*;
    import java.util.zip.*;
    public class ZipFileCreation
         public static void main (String argv[])
         try {
         FileOutputStream fos = new FileOutputStream ( "c:/a.zip" );
         ZipOutputStream zip = new ZipOutputStream ( fos );
         zip.setLevel( 9 );
         zip.setMethod( ZipOutputStream.DEFLATED );
    //     get the element file we are going to add, using slashes in name.
         String elementName = "c:/kalpesh/GetSigRoleInfo092702828.txt";
         File elementFile = new File ( elementName );
    //     create the entry
         ZipEntry entry = new ZipEntry( elementName );
         entry.setTime( elementFile.lastModified() );
    //     read contents of file we are going to put in the zip
         int fileLength = (int)elementFile.length();
         System.out.println("fileLength = " +fileLength);
         FileInputStream fis = new FileInputStream ( elementFile );
         byte[] wholeFile = new byte [fileLength];
         int bytesRead = fis.read( wholeFile , 0 /* offset */ , fileLength );
    //     checking bytesRead not shown.
         fis.close();
    //     no need to setCRC, or setSize as they are computed automatically.
         zip.putNextEntry( entry );
    //     write the contents into the zip element
         zip.write( wholeFile , 0, fileLength );
         zip.closeEntry(); System.out.println("Completed");
    //     close the entire zip
         catch(Exception e) {
    e.printStackTrace();
    }

  • How to use FPGA Interface VIs without FPGA Module

    According to this, http://zone.ni.com/reference/en-XX/help/371599D-01/lvfpgahosthelp/interface_no_module/, I can use the FPGA interface vis to connect to an FPGA (on a 7833R) without installing the FPGA Module. How do I get access to those VIs? Do I have to install the module (but there is no need to activate it?) or is there something else to install that only includes the interface functionality?
    Thanks,
    Chris

    Hey Chris,
    Out of the LV Help i found:
    The FPGA Interface is available with FPGA target driver software. You can use the FPGA Interface functions in a host VI if you have an FPGA target and the appropriate driver software. You do not need the LabVIEW FPGA Module to use the FPGA Interface functions. You need the FPGA Module if you want to develop FPGA VIs.
    I think installing the NI RIO driver adds the palette.
    Christian

  • How to use BKPF and BSEG without using  inner join

    Hi,
    can anybody plz tell me the logic about how to complete the report without inner joining bkpf and bseg.Is this report can be really be made by using only bseg,bkpf ?
    *selection-criteria .
    BKPF-USNAM
    BKPF-CPUDT
    BKPF-BUDAT
    BKPF-GJAHR
    BKPF-BUKRS
    BKPF-BELNR
    BSEG-SAKNR
    BSEG-LIFNR
    BSEG-KUNNR
    BSEG-ZUONR
    BSEG-SGTXT
    Output fields required.
    BKPF-BUKRS
    BKPF-BELNR
    BKPF-GJAHR
    BKPF-MONAT
    BKPF-BLART
    BKPF-CPUDT
    BKPF-BLDAT
    BKPF-BUDAT
    BKPF-USNAM
    BKPF-XBLNR
    BKPF-STBLG
    BKPF-BKTXT
    BKPF-WAERS
    BKPF-KURSF
    BSEG-BUZEI
    BSEG-BSCHL
    BSEG-KOART
    BSEG-UMSKZ
    BSEG-SHKZG
    BSEG-MWSKZ
    BSEG-PSWBT
    BSEG-PSWSL
    BSEG-DMBTR
    BSEG-SAKNR
    BSEG-HKONT
    BSEG-KOSTL
    BSEG-KUNNR
    BSEG-VBELN
    BSEG-LIFNR
    BSEG-ANLN1
    BSEG-ANLN2
    BSEG-AUFNR
    BSEG-MATNR
    BSEG-MENGE
    BSEG-MEINS
    BSEG-ZUONR
    BSEG-SGTXT
    Thanks,
    Rahman
    Moderator Message: Please search before posting your question. Thread locked.
    Edited by: Suhas Saha on Jan 31, 2012 3:07 PM

    Quick question - what's preventing your from using built-in functions?
    I suggest mapping your Time Dim to a standard Time Dim and work with it - you'll save a lot more time. You'd even need this table if you wanted to work around Todate/AGO.
    It is possible to model this functionality w/o functions, but it'll be time consuming task, similar to using Time Series Wizard in Siebel Analytics. You'll need to build aliases and views along with some complex joins (such as TIME.KEY=TIME.KEY-365), introduce a bunch of variables to control. Also, you might not get much flexibility in terms of years. For each year, you'd need an alias table. (TIME_DIM_PY).

  • Control CS-200 Konica Minolta chromameter using USB and labview

    Hi,
    Does any body have any ideas about controling a Konica Minolta CS-200 chromameter using Labview. The Chromameter has an USB interface to the computer that is controlled by its own software. I dont think there is a command language available for this or any such thing. But is there a brute force way of reading measurements from CS-200.
    Thank you, Jignesh

    I developed a LabVIEW application a few years ago that use the Minolta
    CA210 color analyzers.  I used the ActiveX controls in LabVIEW to
    interface to the unit via USB (RS232 as well).  The unit came with
    software that you had to install on the target computer (it put the
    DLLs used to control the unit in the windows system folder and added
    registry entries).  There was a SDK manual that showed all of the
    methods and properties in the DLLs; once I figured out how to make
    calls via ActiveX, I was able to control the unit.
    Hopefully the CS-200 can be controlled similarly.  I've attached a subVI used to initialize a CA210; hope this helps!
    Daniel
    Attachments:
    CA210 ActiveX Initialize.zip ‏22 KB

  • Use TreeModel and MenuModel without Faces-Config

    I need to create a menu based off of data from a database. This data is in an hierarchical format, so it needs to be loaded into the TreeModel. I'm able to load the TreeModel from the persisted data; however, I now need to take that data and format it into the MenuModel so that I can use the menu ADF components (i.e. I don't want to use the ADF tree component). All the examples that I've seen that use the MenuModel involve setting up the menu items in the faces-config (e.g. #{menuItem_GlobalLogout}), which I cannot use.
    Is there a good example out there that shows how to load a MenuModel from a TreeModel without using the faces-config to setup the menu items?

    Hi,
    you should be able to adapt the sample to create your own menu model objects (nothing else is what the faces-config.xml version does. It just uses managed beans to have JSF instantiating the menu structure). So in your case you could use a table query to build and populate the query using Java objects similar to the provided sample.
    There is no sample available that I am aware of that shows how to do it differently though I once used the ADF tree binding to build the menu items
    Frank

  • Using Ipad and works without my command

    I was using my Ipad this morning and all application I get in starts to work without my command, what can i do?, I was using my Ipad this morning and all application I get in starts to work without my command, what can i do?

    It's working now, but I'm afraid! How can my ipad work alone? Is it safe to use an ipad (or apple apllication) for my confidential information if in this situation looked like other person was using my system? Anybody have an explanation that can make me more confident in this system?

  • Acquiring images from an Analog Camera using Arduino and LabVIEW

    Hi All,
    I posted this on the LabVIEW Arduino community but I am not sure it went through.
    Check out this project I have been working on for the last two weeks.
    It allows you to capture lowres/low bit depth images with arduino with LabVIEW (needs NI vision).
    Here is the link
    Feel free to use the code (it is all downloadable).

    Hello cagell
    I just wanted to exprees my thanks for sharing your awesome project with our community.  I am a huge analog video enthusiast myself.  All the best!
    Sincerely,
    Greg S.

  • What is the difference between the LabVIEW FPGA and LabVIEW REAL-TIME?

    Hello,
    Could anyone help me? This question arose in my work and could not answer. Does anyone know tell me?
    Thank you.

    If you're interested in some more information about what an FPGA is, please take a look at:
    http://zone.ni.com/wv/app/doc/p/id/wv-585
    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.

Maybe you are looking for

  • View in sm30 - generate table maintenance + se54

    hello masters, in a standard view i want to this: i have 4 fields, when i gonna save the system checks if all fields are filled, if isnt filled the system throws a error message. With tcode SE54 i put my view and then in menu Environment -> Events i

  • Cisco WLC 5508 simultaneous Web Auth Users logins?

    Hi there, We have 2 WLC5508 (7.2.111.3) with several SSID's. One of them is configured as Passthrough with an external splash server. Works fine. Now we want to use the "On MAC Filter failure". If the client MAC-adresse is configured under MAC Filter

  • Adobe Sizing issue

    So the facts and then a picture.  I am using Windows 7, 64-bit.  I have two monitors set up.  When I open Adobe Acrobat (8 Professional) the window is maximized, but somehow the window is off-center.  It doesn't fill one monitor and when I hit the Re

  • Pse 11 crashes using plugins

    My trial version of pse 11 and my old pse 7 crashes everytime, almost everytime  I use the plugins fllters. I have win7 on a new PC. Same problem on both versions. Looks like a windows problem. I dont know. thanks

  • Nokia C3 language pack

    The phone comes with both English German Russian and Romania, but I need theSpanish where I can download the language pack Solved! Go to Solution.