-
Posts
4,977 -
Joined
-
Days Won
310
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by ShaunR
-
Lava is obviously a great place to pick the brains of the Labview community elite. It is also more LVOOP centric than other labview sites and has some awsome LVOOP talent. However. Most of the LVOOP concepts discussed are very advanced for the average LabVIEW programmer and centered around a few personal projects with no real focus on deliverable code, rather frameworks and eosoteric concepts. Quite often we see potential CLDs posting their code, for comment, as a prelude to taking the exams. All of these are written in classical LabVIEW. If the LVOOP community is adamant that LVOOP is the future, then maybe some of the LVOOP gurus could post unofficial, demonstrative LVOOP implementations of the example exams (ATM, traffic lights etc). This would then give a focus on using LVOOP to achieve specific end goals, with well defined specifications and exisiting solutions for comparison - it would allow those using classical LabVIEW techniques to comparitively understand LVOOP in context with the classical solutions. Is anyone up to the challenge? To provide (unofficial, demonstration) LVOOP solutions of CLD example exams for the benefit of potential CLDs? We see many different approaches in classical LabVIEW to solving the examples. Would we see a similar plethora of innovative LVOOP solutions? Perhaps it could even be a collaborative effort to produce them and maybe , once refined they could be proffered to NI as a candidate for an official NI solution along side the classical one!
-
Selecting which child class to cast to.
ShaunR replied to SteveChandler's topic in Object-Oriented Programming
So you want a singleton? -
Selecting which child class to cast to.
ShaunR replied to SteveChandler's topic in Object-Oriented Programming
I think most of our confusion (well, mine at least) arises from the fact you are trying to cast at all. I thought you were questioning why you get the parent after the cast rather than a child of the type you select. What is wrong with -
Selecting which child class to cast to.
ShaunR replied to SteveChandler's topic in Object-Oriented Programming
Indeed. That is why the To More Specific "casts" it to the parent type (because that is what the type is on the wire, coerced by the array concatenation). The only way you can "extract" the contained class (as you point out) is via the invisible selection methods in the LVOOP system (the equivelent in my analogy of "extracting" the bits). -
Selecting which child class to cast to.
ShaunR replied to SteveChandler's topic in Object-Oriented Programming
Arrays have to be of a single type. The child classes get coerced to the parent since that is the only type for which they are all compatable to exist as a single type within the array (and why you have coercion dots). If you think about adding a Uint32 to a DBL array, the Uint gets coerced to a DBL right? So do your classes. -
Does anybody know what wcontrol service is on Windows XP
ShaunR replied to dannyt's topic in Calling External Code
It could be for the mouse wheel WControl Does the mouse wheel stop working if you disable it? -
Need LVOOP Object VIs in lvdata library
ShaunR replied to Jim Kring's topic in OpenG General Discussions
Oh. And as an after-thought (an after I can edit, thought ). The reason for posting wasn't to provide a "faster" version of the NI one (thats more by accident since I didn't benchmark it). Just a version that you could see the diagram - Jims request, Feel free to change the calls to UI if it makes you happier because with this offering you can -
Need LVOOP Object VIs in lvdata library
ShaunR replied to Jim Kring's topic in OpenG General Discussions
It's a good point. I have never seen it defined explicitly that "all LabVIEW.exe calls are thread-safe" (perhaps someone from NI could clarify). Or indeed (by extension) a definition of those that were or were not. However, thread safety is usually defined on a per dll (or in this case per exe) basis. So if the LabVIEW.exe wasn't thread-safe. I think we would all be in trouble. Anecdotally, I have never run into any problems assuming it is. Thats not to say that NI have not ensured all calls are indeed thread-safe on the assumption that no-one outside of NI without the internal knowledge as to what call is and isn't thread-safe. But I would be very, very surprised if they were mixed and matched within the exe. Saying that. Calls to the labVIEW.exe that involve the user interface I do not make re-entrant on the assumption that it is a call within the UI thread. So if any were going to be an exception, it would probably be those. -
What I did with PassaMak was that the engine would exclude any controls where the caption wasn't visible (it too used the label as a tag). The user then just showed the label instead of the caption for that "ignored" control/indicator. But as Yair said, it isn't common and it doesn't really make any difference if you do add all controls since who expects a control on a preferences dialogue not to remember what you put in it?
-
Need LVOOP Object VIs in lvdata library
ShaunR replied to Jim Kring's topic in OpenG General Discussions
Perhaps it has longer wires or more wire bends restricting the dataflow -
I didn't mean to belittle your efforts. It's great. Just not what I originally thought.
-
Thats a pity since I don't use VIPM or the tools:( Nevermind. I think I got the wrong end of the stick. I thought it was adding a page to the LabVIEW preferences (from the LabVIEW toolbar). Still sweet though.
-
Ditto with the get config file. This is sweet. Huge improvement on the original. Nice work. One question. Does it need the openG tools intalled on the users machine? (i.e what about distribution of the developers toolkit that these settings apply too)
-
Install both anyway, then if you run into problems with the 64bit (tookit not supported etc), you can just recompile and continue in the 32 bit version. Source
-
Need LVOOP Object VIs in lvdata library
ShaunR replied to Jim Kring's topic in OpenG General Discussions
Me neither. -
for a generic deveopment system this is the sort of thing I look for: As many slots as your desk can handle (14 is typical - mixed, PCI, PCIe of varying 1x, 8x etc) AGP graphics card and slot (don't use up your precious PCI, PCIe slots) at least 1x9-way Dtype serial port (most have two). a parallel port (always handy for quick DIO). As many USB as you can find (typically they come with 2-4 but there is usually support for more on the motherboard via a breakout to the rear-buy the breakout with the PC because they are hard to source separately). At least 2x GB ethernet ports (make sure one is a "Intel Pro 1000" so that vision can use the NI high performance driver) at least 1x RS485 port (make sure it supports 4 wire although usually you can get away with one that only support 2-wire for most things). Fastest, meanest processor that the person who owns the purse strings will let you have. Wordsworth are a safe bet in terms of support and product longevity for out of the box solutions (but expensive). Protech are where all industrial PC manufacturers get their SBCs and backplanes from if you want to build your own.
-
How to get strings from a ring w/o UI thread swap?
ShaunR replied to Stobber's topic in LabVIEW General
Well. In that case you have two options. 1. Use a look-up table (which you have already said you don't like) 2. Ascertain the baud characterisitc and calculate it. Baud rate generators are a function of the processor clock. So if you find one here that closely matches your ring control, you should be able to work out a function for calculating it for that device [i.e that devices clock - most use 18.432 MHz if they have any sense, e.g. UBRR = (18432000 / (16 x Baud rate)) - 1]. -
How to get strings from a ring w/o UI thread swap?
ShaunR replied to Stobber's topic in LabVIEW General
Well. I think you are over-thinking it a bit. However. If you use a ring instead of an enum, you can assign abitrary numeric values to your strings (the baud rates) since a rings values doesn't have to be contiguous. You can then wire it straight into your "Config Serial Port" VI. -
LabVIEW, Websockets, and SVG
ShaunR replied to smarlow's topic in Remote Control, Monitoring and the Internet
No-eyed-deer. This is purely a mismatch in the URI which chrome resricts by default (firefox, Safari and explorer don't exhibit this behaviour). I have only had this problem with websockets since I have never had the need to send cookies from labview. So I guess if your cookie issue works in the other browsers but not in chrome, then maybe it will solve it- you tell me -
LabVIEW, Websockets, and SVG
ShaunR replied to smarlow's topic in Remote Control, Monitoring and the Internet
I noticed that you had this in your JS I'm guessing this comment is because you get a x-server script error when using chrome to access a "file://" URI (i.e a local file rather than an "http://" URI). You can override this limitation by launching chrome with the command-line switch "-allow-file-access-from-files". You should then be able to connect after opening an html file on the local file system without an error. -
Dynamic Sub VI Control: Practical Implementation Thereof
ShaunR replied to AlexA's topic in Application Design & Architecture
This is a simple example of the sort of thing I do with initilising/launching sub processes. The top example is fully synchronous and will launch the vi and wait until it gets the feedback from that VI before proceding to the next. The bottom one is the sort of thing I do mostly since it launches and initialises all the vis and then just waits until it gets the responses back. You can make it as complicated as you wish (check the responses rather than just waiting for a set number as I have shown or "gathering" them in a while loop instead of a for loop) however I think you can see the pattern. You will notice I am not talking about a "controller" here because it depends where you are using this. Generally, the UI will talk to a controller (you may have more than one e.g IO controller or sequence engine) and the controller will use this to launch its sub vis. -
That is a misnomer (and a common one) since foreign sites are not bound by US laws. The only thing realistically that can be achieved (as they do in Thailand) is restrict access to those sites from US governed territories. Good luck with extradition on SOPA grounds too. For example. In the UK they have introduced a law that any business web site must provide a notice that you will be setting cookies on a users machine and only do so with their consent (opt-in). Does it apply to NI sites in the US? Nope. Does the US care? Nope. I get really tired of the "Axis of Evil" arguments to stir up nationalism (not directed at you, just it's always the justification for anything unpopular both here in the UK and in the US). Politicians can no longer promise us dreams, so they promise protection from nightmares. It's the cold war mentality that really belongs in the 20th century and has done nothing for a safer world. Rather, it has ridden rough-shot over civil rights because we have believed it.
