Jump to content

crossrulz

Members
  • Posts

    546
  • Joined

  • Last visited

  • Days Won

    25

Everything posted by crossrulz

  1. Congratulations. Hope to see you at the CLA Summit.
  2. Just quickly playing around with it, I like. I really like the linked thread feature where you can start a new thread based on a post. But we would never need that since we alway stay on topic...
  3. You could use the Write To Spreadsheet File. You may have to play with the Transpose? input. Personally, I just use the Configure Streaming function to stream the data to a TDMS file. I makes things really simple.
  4. I don't see why your UI loop would need to know the hardware state. If it doesn't get a message, it doesn't care. I find it is a lot better to keep things separated. Use the event to update your UI. Otherwise you will have to have your reading from the FPGA in the same VI as your UI to update your indicator. GUI VIs get large enough. I find it best to try to keep that as separate as you can. Even the large amount of data that I have passed around has yet to cause any issues.
  5. I was going to suggest using the Elasped Time express VI and only read the SQL data when "Time Elaspsed" (use a case structure). As Tim_S stated, use a small wait then.
  6. You have a data dependency between your two loops. Combine the loops into a single loop. You can have a counter keep track of your time to state when to toggle your LED.
  7. Do you have an example of your text file you can share? Do you have any code to show what you have tried?
  8. The answers should be in the back of the sample exam. If you have questions on why those are the answers, ask those.
  9. Do a search in the LabVIEW Example (Help->Find Examples) for Digital Output. You should find plenty of examples of how to control some digital IO.
  10. cross post
  11. You will want to create some digital output tasks to control some of the DIO. Use the DIO to control your relays. You will very likely need a buffer circuit to supply enough current to control the relays.
  12. Anymore, I doubt it. When the In Place Element Structure was first made, it would tell the compiler to do things in place (no data copies). I believe the compiler has gotten a lot smarter since, so there likely isn't any difference anymore.
  13. It really depends on who did the presentation for when or if it will be posted. At least we have Mark's videos for some.
  14. I've been told that it is retroactive. If you doubt it, send an email to certification@ni.com to get your expiration date.
  15. If you want to make sure, then open a VI in the project and go to the VI Properties. In the List Unsaved Changes dialog it will tell you what version the file was last saved in.
  16. Yeah, that is definitely a database situation. TDMS is not good for this. Look to the SQLite solution you were given before.
  17. TDMS is setup for waveform data. For what you are referring to, you need an actual database, not TDMS.
  18. As I said, I always copy the LabVIEW.ini file whenever I have a fresh install. This will copy all of your settings, including the quick drop shortcuts.
  19. The best way would be to turn your plugins into packages with VIPM. I just keep a copy of my plugins in a central network location and copy them over to whichever versions they are compatible with. Are you talking about the plugins that you can make with scripting or shortcuts to quickly drop functions from the palettes? Those shortcuts are in your LabVIEW.ini file, which I always copy over when I make a fresh install.
  20. Look in the Signal Processing->Signal Generation palette. There is a Gaussian White Noise.vi in there that will give you noise with a bell curve distribution. Now go to the Mathematics->Probability & Statistics palette. There is a Histogram.vi in there that can create your distribution. Make a graph from the output and you are done.
  21. It's like I started a trend! I begged for the CPI course to be with the Summit last year. It does make sense to allow CLAs to take the course right after the Summit. Makes sure you have good people teaching and it saves the CLA travel time. Good to hear from you again, Dave. Hopefully I will see you at the Summit.
  22. Back when I was asking about the CPI, it was pretty much NI wanted you to go through their 2 day course. Mine was a Thursday/Friday after the CLA Summit last year (which made it a lot easier to justify going down). The NI course was really good and they go through a lot of the "here's how things work" when it comes to how classes are scheduled and all of that. I would highly recommend just taking the CPI course.
  23. You have the event setup to freeze the front panel to until the event completes. This is the default setting. So what happens is if you are not regularly checking for events with the event structure, the panel will freeze once you hit that button. Once the state machine comes back to the idle state, it should call the event structure, react to the event, and go running again. The simple solution to this is to disable and gray out the button. Use a property node to set the Disabled state. Use the "Enable" and the "Disable and Gray Out" options. So after the button is pressed, you disable the button. When you go back to the idle state, you reenable it.
  24. Almost all of the plugins I used with RCF are also available with Quick Drop. I haven't used RCF since 2011 came out. NI did something with that release that messed up the RCF and JKI has no intentions what-so-ever to keep RCF up to date. I was told by a couple of them that they only made it to force NI to release scripting.
  25. How I have used TestStand is more of a sequencer. We want to set the power supply, so that is a step in TestStand. We then want to measure the voltage with a DMM. That is another step. And we go along like that. It makes test developement really easy. For drivers and low level stuff, we use LabVIEW. So a lot of your LabVIEW code can still be used. You are just invoking them via TestStand instead of calling them in LabVIEW.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.