Jump to content

Mellroth

Members
  • Posts

    602
  • Joined

  • Last visited

  • Days Won

    16

Everything posted by Mellroth

  1. QUOTE(Karissap @ Oct 30 2007, 07:15 AM) The wrapping of the U32 tick count value is not an issue, unless one iteration is taking more than 2^32 ms to complete. In other words: A-B, where A and B are U32 values, will still be correct even if A wrapped (unless the real difference is greater than 2^32). /J
  2. Mellroth

    Motorola gps

    QUOTE(Norm @ Oct 29 2007, 02:37 AM) QUOTE(Justin Goeres @ Oct 29 2007, 04:48 PM) Actually, another option might be to just Type Cast your "array of two U8s" to a single U16. I forget whether that works or not... Hi Norm, as Justin pointed out, you can use TypeCast to convert two U8s to a single U16, but you can even go further by typecasting the U8-array directly into a cluster with the elements in the same order as your parameters. Have a look at the attached code, and see if it might help you. Download File:post-5958-1193674539.vi PS. there are still 2 bytes not accounted for in the string "...00 F3...", do you need to parse these as well? /J
  3. QUOTE(MikaelH @ Oct 23 2007, 05:12 AM) Hi, I think that this structure would be fantastic, and a similar structure has been proposed before: http://forums.lavag.org/Parallel-loop-t4739.html I guess that the structure should be limited to Fixed Size Arrays or constant number of threads, or do you think it would be possible to have threads allocated on the fly? /J
  4. QUOTE(Aristos Queue @ Oct 18 2007, 09:36 PM) Maybe it was a bad example, but I tried to give another example of where the buffer allocation tool does not really help in finding the spots that cause buffer allocations. Without the shift register the dot appears on the build array output, so it is easy to see that the build array is the place to be optimized, but with the shiftregister, the dot appears on the shift register instead. /J
  5. QUOTE(vinayk @ Oct 18 2007, 04:01 PM) To change the Icon of a VI and/or add terminals, use right-click on the icon (upper right on the Front Panel). Then connect FP objects to the terminals on the connector where you want them, you might want to read some suggestions on how a good terminal layout should look like, but in general: inputs to the left outputs to the right make sure you select a connector pattern with some spare terminals, for future use /J
  6. QUOTE(tcplomp @ Oct 18 2007, 12:53 PM) Congratulations, I remember getting one point from full score, just because a wire was not completely straight I really hate those small mistakes. /J
  7. QUOTE(Tomi Maila @ Oct 16 2007, 06:22 PM) QUOTE(Aristos Queue @ Oct 16 2007, 07:31 PM) C) Looking at the version that doesn't have the Swap primitive, there's a dot on the bundle node on the output, indicating that a buffer has been allocated for the output of this operation I don't know if it is a bug in the "show buffer allocations" algorithm, but I must say it is not always consistent. I would expect the algorithm to set a dot on all outputs that needs to allocate a buffer, i.e. on all places were the input buffer can not be reused. In the picture below the dot appears only on the left shift register terminal, eventhough the code resizes the array twice in the loop, but there is no dot to indicate that there is a buffer allocated on the function outputs. What AQ is saying, is just what I would expect, i.e. that the dot should appear on the output where the buffer has been allocated, but in the picture above it appears on the shift register instead of the build array output. My point is that the location of the dots in not always correct (IMO), in respect to what actually causes the buffer allocation, and this makes the "hide the dots" game so difficult (or fun?) sometimes. /J
  8. QUOTE(tcplomp @ Oct 17 2007, 07:38 AM) Good suggestion :thumbup: , I'd like to see Primary/2:nd/3:rd OS selections, so that you can display that you are using more than one OS. I would also like to have LabVIEW-RT usage displayed in the profile, maybe as a OS selection? /J
  9. Hi, I just received information from NI, that this is a limitation of the Pharlap OS, on VxWorks targets (e.g. cRIO 9012) this limitation does not exist. NI will fix the error message in LV-RT 8.5.1, but has no more information to get past this limit. /J
  10. QUOTE(Neville D @ Sep 27 2007, 07:04 PM) Thanks, I have contacted NI, but the first suggestion was to increase the Maximum Number of Sockets, but that didn't solve my problem. We have a workaround, that will solve this specific problem, but I still don't think that the OS should limit the number of sockets (it's OK to limit the number by default, but it must be possible to get past this limit somehow). I'll update this thread if/when I get a clear response from NI. /J
  11. Thanks for your comments, but my guess is that this is only solved by some hidden KEY in the NI-RT.ini file. QUOTE(Neville D @ Sep 27 2007, 12:02 AM) Currently Broadcast is not an option, it has been ruled out earlier. I have tried to add a delay, but that has no effect. What matters is how you set the Maximum Number of Sockets in MAX. If you break the limit given in MAX, you'll get error code 11, (To many files open), if you then increase the number in MAX, you will instead run into another limit, that throws error 42 when it is reached. QUOTE(Jim Kring @ Sep 27 2007, 01:59 AM) In Windows XP SP2 there is a limit to the number of sockets that the OS will allow you to open, in order to prevent viruses from spreading (talk about a band-aid solution). There is a patch tool, here (use at your own risk), that will allow you to adjust this. I need to open my sockets on a RT target, I guess this tool is only for Windows, or can it be used on Pharlap as well? For the record I have tried to open 1000 UDP sockets on Windows, without any problem. /J
  12. Hi, I need to have a lot of UDP sockets in a server implemented on a LabVIEW RT machine, but currently there seems to be limit of 60 sockets. Even if the Maximum Number Of Sockets is set to 200 in MAX. To test number of sockets available, I use the code displayed below. When no more sockets can be opened the VI returns error 42 in UDP Open, (Generic Error). Anyone know how to get past this limit? I guess I'm missing something obvious. /J
  13. QUOTE(sVeNvAeTh @ Sep 25 2007, 10:46 AM) Contextual help is your path to success... Press Ctrl-H and put the mouse cursor over the XY-Graph terminal, check the help description on how to wire the XY-graph Also check the graph examples in LabVIEW. /J
  14. QUOTE(sVeNvAeTh @ Sep 24 2007, 01:11 PM) Try searching for " ", and replace this with "" (without the qoutes). The search string "\s" (notice backslash), is the \-code view of a space character (To view any string in LabVIEW as \-code, right click on the string and select "\"-codes display) You should also wire the "Replace All" terminal with a TRUE constant, to get rid of all spaces. Good luck /J
  15. QUOTE(PJM_labview @ Sep 21 2007, 09:45 AM) Hi I haven't really used the property, but from what I understand, you could use this property to get the character closest to the mouse cursor. See attached example. http://lavag.org/old_files/post-5958-1190370490.vi'>Download File:post-5958-1190370490.vi Just move the mouse over the string control to invoke the ByteOffsetAtPoint, that returns closest character as well as the ByteOffset. /J
  16. QUOTE(crelf @ Sep 19 2007, 04:52 AM) Wow, finally a way to make people understand that RT systems can be fun to work with. :thumbup: /J
  17. QUOTE(massi1970 @ Sep 6 2007, 11:44 AM) Hi, yes it possible, just use the VI-server property node (in Application control palette). There is a property for VI's called "VI name", this property will return the name of the VI. /J
  18. QUOTE(Tomi Maila @ Sep 4 2007, 09:11 PM) Phew, I watched the Eurovision Song Contest, and thought Finland was all about Monsters/Goblins etc., thanks for getting me in the right direction http://www.metacafe.com/watch/135809/lordi_hard_rock_hallelujah_eurovision_2006/' target="_blank">http://www.metacafe.com/watch/135809/lordi...urovision_2006/ /J
  19. QUOTE(Mindstormer @ Aug 31 2007, 11:06 AM) Can we get some more info about this application, the best would be if you could upload the VIs and/or a picture. It is more or less impossible to answer your question without any more information. /J
  20. QUOTE(Noxious @ Aug 31 2007, 01:18 AM) Hi, you can find information about how to create an NT-Service from your LV application over at NI.com http://zone.ni.com/devzone/cda/tut/p/id/3185 http://digital.ni.com/public.nsf/websearch...9B?OpenDocument I know this only answers part of your question, but I think the system-tray-icon-request has been posted here on LAVA before, I just can't find it. Good luck /J
  21. QUOTE(Sherif @ Jun 23 2007, 09:39 PM) I have only checked the picture you supplied, and in this picture you are converting U16 values to string using the "U8 to string" conversion. This approach will only use the lower 8 bits in the U16 values, i.e. the higher 8 bits will be lost using the "U8 to string" conversion. Example: If you are sending two binary values 0x00FF, 0x0000, these will be sent as two ascii characters 0xFF and 0x00. If the FPGA expects 16 bit values the serial data would be interpreted as 0xFF00, which is wrong. To send all 16 bits, you will have to use a function other than "U8 to string" to do the conversion, e.g. typecasting. /J
  22. QUOTE(brianafischer @ Jun 12 2007, 06:15 PM) Hi If you want to preserve the layout of the typedef elements within your VIs, I think it is enough to group the cluster elements (in the "right" position). This should work for changes like default value, positions of elements, coloring, but it wont work if you add/remove elements or if you change cluster order. /J
  23. QUOTE(keiran @ Jun 10 2007, 10:10 AM) This has been discussed earlier, and there seems to be a way to still treat the exe as an llb, at least if you only need to access the contained VIs. Please see the post http://forums.lavag.org/trial-version-of-my-exe-t6116.html&view=findpost&p=24269' target="_blank">http://forums.lavag.org/trial-version-of-m...ost&p=24269 /J
  24. QUOTE(Michael_Aivaliotis @ Jun 12 2007, 06:44 AM) Never really liked the Outline mode anyway. /J
  25. QUOTE(Eugen Graf @ Jun 11 2007, 09:05 PM) I don't have access to LabVIEW at the moment, but I think that setting the FP state to "closed" on the top level VI, is the same as pressing the X (close button) in the upper corner of the application window, i.e. closing the application. /J
×
×
  • Create New...

Important Information

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