LabVIEW Idea Exchange

Community Browser
cancel
Showing results for 
Search instead for 
Did you mean: 
Post an idea

The Set HTTP Response Code VI allows to insert a custom HTTP response code, but does not allow to insert a custom text description of that code.

It would be useful to have a string input that allows to insert such description.

In Ethernet/IP library actualy not suport to use specail service code only get attribute service code 0EH and set attribute 10H, i suggest to add a new Vi to use special service with inputs (Service code , clas,instance , data(array U8) ) with option to use/not use attribute , and  output as array U8

See attache image

molex.jpg

Interfece to the Microsoft OneDrive Cloud storage.

About the function palette session in (Connectivity -> Webservice)...

 

The function generate a cookie, but we cannot change the name of the cookie (random value) or the property http only.

It would be nice to have more access to the structure of the cookie.

 

An other issue of this palette:

If I use the function Get Session and Destroy Session the http request of the client application (or browser) ends with a bad request, while the cookie is deleted from the client.

 

kind regards 

 

Christof

 

 

It would be really nice if the Flatten to JSON supported more LV data types.  In particular, I find it very annoying that it doesn't support flattening a waveform to JSON since those are very common in most of the measurement APIs.  

 

In the mean time, I have come up with this little work around, but it really seems like this is something that should be natively supported.

 

Waveform to JSON.png

 

JSON to Waveform.png

Allow the network address to be specified when performing TCP and UDP writes in LabVIEW. 

 

For example, universal plug and play uses multicast messages for discovery. However, the multicast vi only transmits on the default network address. This makes multicast discovery impossible when I have multiple UPnP devices on multiple networks (I have multiple network interface cards and additionally use a VPN that acts as a virtual network adapter).

In the Simple Messaging Reference library, the STM Get Connection VI always requires an index to establish a desired connection. However, this mechanism does not lend itself well if the program needs to add/delete connections on-the-fly. Specifically, it takes some work to determine the next correct index. As a work around, the user can use a property node and set a connection "Name" to search on. What I would like to see is a name/index polymorphic input instead, as well as a disitnct VI to 'Get Properties'.  This would enable the program to retrieve properties necessary for the Get Connection VI to be used on-the-fly without explicit knowledge of the name/index.

I have 208 data producing test stations, located in 10 different labs in 4 different countries.

I need an easy way to copy or move the files from the test stations, to a lab data computer, to a “web service” to a master global data base in the US.

Within each test lab I am thinking a network shared drive.

However, getting the files from China, Taiwan and Germany to the US automatically is challenging.

I am thinking that a web service like “amazon web services” would work.  But setting it up and programming it into LabVIEW is more challenging than it should be. 

It would be really nice if Nation Instruments would create a simple easy solution to do this.

I think there should be a way to have a network stream endpoint creator continuously wait for a connection. The problem with that is there's no good way to stop that "wait forever". I propose we create the network stream in two parts. The first one just creates a handle that can be closed later. The second one does the actual waiting like the normal create endpoint.

 

Network streams.png

 

Hello,

 

since FlexRay is rising in more and more products, a FlexRay support is needed. I suggest to extend the Automotive Diagnostic Command Set to support UDS on FlexRay, too.

 

Best regards

Mario Krömer

Hello,

 

I like to suggest ECU Measurement And Calibration Toolkit to support XCP on FlexRay. FlexRay become available in more and more products, and XCP support it would increase the usability of XNET HW.

 

Best regards

Mario Krömer

Hello,

 

I like to suggest adding a possability to show the text definition of signal values inside the XNET database editor, (e.g 2 => 'moving'). Right now I need to open another tool to check the meaning of a value that is already describt inside the opened dbc.

Hi there,

 

in my opinion the XNET database editor is nice to handle database carrying some 10th of signals, but not some 100th to 1000 if a specific property is used.

 

- Implement a list view of all signals with its details, so that signals could be sorted by their properties, e.g. static or event type.

- Highlight FlexRay coldstart frames and nodes icons in tree view

 

 

 

 

Hello,

I suggest to handle CRC calculation of frames by XNET HW (similar to other thread in this foram that suggest handling message counter on CAN).

 

In every project there are frames that needs a CRC over whole frame content, e.g. for CAN:

<Data1> <Data2> <Data3> <Data4> <Data5> <Data6> <MessageCounter> <CRC from Data1 to MessagCounter>

 

Currently, all is handled by CPU which results in dependence to CPU and OS. Actually, complete frame raw data must be build in PC to calculate CRC (even if symbolic signal names are used).

 With multipe CAN busses in parallel use and different repetition rates of CAN frames, timing may become critically.

 

It would be great if it would be possible to configure CRC-8 calculation for frames. Since the calculation has some parameters that are different from customer to customer, a perfect solution would be a formula node, that could be shifted to XNET board and liked to multiple frames with parameters:

 

- frame name

- CRC protection start byte

- CRC protection stop byte

- CRC byte position or signal name

 

 

Logical shift in LabVIEW discards the shifted out bit. Logical shift functions in assembly labguage settings shift that value to an overflow bit register allowing the bit in question to be tested and program flow to be altered.

 

This kind of function is useful when dealing with low level protocols at the bit level, or dealing with digital devices that have a parallel interface.

 

I suggest the logical shift function have an additional output that contains the boolean value of the bit just shifted out of the number.

 

Logical shift should be able to output a single boolean, or an array of boolean. For the single case, the value would be the last bit shifted out with other bits being lost. For the array output, all bits would be captured with the first bit shifted out being the 0th index of the array.

I'm communicating with a instrument with Ethernet, and the LabVIEW driver associated has a mistake. Based on RS232 protocol, the driver builds message and with VISA, you can easily choose RS232 or TCP/IP port. But the driver doesn't work for Ethernet because there is a really nice fonctionnality in RS232 that is not implemented in LabVIEW for Ethernet which is the end message caracter like \r or \n.

There is "Message Based Settings:Send End Enable" VISA Ethernet property but it doesn't fit well.

It would be nice and powerfull to have the equivalent of the RS232 property "Serial Setting: ASRL End Out" and "Serial Setting:TermChar", wouldn't it?

 

 
Currently, for an array variable, changing an element requires the developer to read the array, update the element and write the array out. Whilst this is fine for simple cases with not sophisticated data flows, it becomes very cumbersome for cases when parallel processing is introduced. For instance, multiple loops updating an array of status flags.
 
 
At present, if two loops (which may be in different Vis) both execute a read-update-write operation on a global shared variable, data can be lost if the operations happen at similar times. Consider the following example: 
 
1.png
 
 
 
Looking at the image above, let's imagine "array1" consists of two elements with values F and T respectively. Then the operation would happen as follows:
 

Step Number

Action taken

Array values

1.

 Read "array1"

 F and T

2.

 Read "array1"

 F and T

3.

 Update "array1" element 0 to T

 T and T

4.

 Update "array1" element 1 to F

 F and F

5.

 Write to "array1"

 T and T

6.

 Write to "array1"

 F and F

 
 
Hence all the data written by “Loop A” is lost. Putting user-defined locking using shared variables around the operations does not seem to work, presumably due to update rate of the locking variables.
 
What would be helpful to overcome these race conditions is to replicate the functionality present in other languages to do operations like a[3]=4 or printf(“%lf”,a[4]). In these cases, an atomic operation is performed to get or set the value in the defined memory location. The addition of this functionality to shared variables would be extremely powerful.
 
An example of such functionality could look something like this:
array.png

 

Estoy tratando de hacer una adquisición de datos mediante la placa Arduino mega, pero no se bien como deba hacerlos en labview, porque no debo usar el toolkit de arduino, si no tomar los datos de texto desde la placa arduino y convertirlos a número, y despues discriminar cada una de las señales, ya que estoy leyendo 6 de las entradas de Arduino, agradecería sus comentarios y ayuda, gracias

The current tcp/ip testing api is problematic for testing ethernet connections.  The behavior of the function set does not allow you to bind to an ip address unless the ethernet connection is active in windows.  This means that a unit under test must be powered before binding to the connection as a host.  Additionally, powering off the unit causes the host connection to be forced to completly cycle its startup (re-bind the listener and junk all the old connections, foricbly by polling because you cannot bind to the port when no connection is present.)  

 

This behavior can be achieved in C program, but cannot be called by labview in a dll because all dlls exist in the same thread.  Windows tcp function calls rely on the calling thread to determine the connection, which means if you need multiple connections it simply cannot work with dll calls.  

 

Suggestion:

 

Implement TCP/IP function calls so that a listner connection can be bound to an IP address that does require an active etherenet port and that is persistent across plugging/unplugging.

 

 

In reference to this knowledge base article:

http://digital.ni.com/public.nsf/allkb/A7DBA869C000B5AE862570B2007C4170

Along with my own personal experience trying to develop an RT program.

 

Choosing to force deployment as a zip file is incredibly obtuse and needlessly adds dead time to the development cycle. Now, when building a networked UI, if changes are required to the Real Time code, I must open, edit, build source, FTP, then run. Why can't I just build the Real-Time application and run it programmatically with a simple VI reference?

 

Alex