LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

VISA Package Error

Good afternoon. Please tell me if I have encountered a problem that data transmitted from the device sometimes comes with a delay or error. It may mistakenly look like CT2560 S1.000 I045, C25602560 S1.000 I045. 5, C T2559 559 S1.000 I045, etc.

 

Снимок экрана 2025-04-01 104904.png

 

Снимок экрана 2025-04-01 104949.png

 

Снимок экрана 2025-04-01 105531.png

 

Could you give me some tips or suggestions on my VP? How can this be fixed, because all such moments are clearly visible in the graphic part.

0 Kudos
Message 1 of 11
(169 Views)

It doesn't look like you are writing anything, so I would remove that part. There is no point for the wait, so get rid of that. We know you always want to read, so remove the case structure. A little more clean up and I am left with this.


GCentral
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
0 Kudos
Message 2 of 11
(149 Views)

This was the very first option, but it's just a simplification of the code. Not exactly what I need. Let me try to explain the essence of the problem in more detail: I use the delay that is in the frame to more correctly reflect the data transfer speed in the XY Graph, so it stands between the frames where VISA Write and VISA Read are used. VISA Write is really not set up right now, as I ran into the problem described above. If you look at the figures where the graph is presented, you will see that in some moments there is a jump, i.e. the data entering the graph are like, for example, 2588, 2589, 2589.., 255(0), 2589.. (Just 255 or 0 is an error of the non-correct packet from the device). I just need help to fix this problem. My attempt earlier was to catch this erroneous line and exclude it (ignore), but as you can see again on the chart, this did not bring results.

Example error packeg.png

0 Kudos
Message 3 of 11
(133 Views)

Hi Seth,

 


@SeraphimSeth wrote:

My attempt earlier was to catch this erroneous line and exclude it (ignore), but as you can see again on the chart, this did not bring results.


That's what I would consider as a quick (and dirty) fix, but apparently you didn't implement the fix correctly…

 

How do you determine invalid messages and how do you exclude them from plotting?

Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
0 Kudos
Message 4 of 11
(125 Views)

@SeraphimSeth wrote:

I use the delay that is in the frame to more correctly reflect the data transfer speed in the XY Graph, so it stands between the frames where VISA Write and VISA Read are used.


The rate of the data coming over the bus is what you actually care about. Therefore, any delay in your code pushes the data out in time. And if the data is coming out quicker than your 100ms, you will get behind. By getting rid of the wait, you are relying on the termination character being read to know when data is there, which will match when the device sends out a complete message.


GCentral
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
0 Kudos
Message 5 of 11
(116 Views)

@SeraphimSeth wrote:

Please tell me if I have encountered a problem that data transmitted from the device sometimes comes with a delay or error. It may mistakenly look like CT2560 S1.000 I045, C25602560 S1.000 I045. 5, C T2559 559 S1.000 I045, etc.

 

Снимок экрана 2025-04-01 104904.png


Thinking about this a little more, it is sounding like something is happening in your device. It is sounding like a command or some condition caused it to freeze and/or stop sending data.

 

It is also possible you have a noise issue that is causing the data on the cable to be noisy and therefore not register bytes to the UART in the computer.

 

Do you see this if you use a terminal application such as Putty?


GCentral
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
0 Kudos
Message 6 of 11
(114 Views)

Hello, GerdW

 

In the Target Temperature T (T symbol) guide, in the nnnn format. LEGAL VALUES can only be 4 characters
therefore, T%d can be replaced by T%4d (1 to 4 characters)
CsT%4dsS%fsI%d%[s,n,r]

 

But even with the C\sT%d\sS%f\sI%d format, any of the following lines gives an error
(CT2560 S1.000 I045;
C25602560 S1.000 I045;
5; C T2559 559 S1.000 I045;).

Therefore, it was proposed to use the C\\sT%d\\sS%f\\sI%d

In the first option, there may be several spaces or none at all.
In the second option, a double slash means one space.

 

The correct string format implies is C T(nnnn) S1.000 I045 

0 Kudos
Message 7 of 11
(57 Views)

Hi, crossrulz

 

I think you're right about the delay in my code. I removed it for a general understanding of the process.

But I'm afraid that clever solutions are unlikely to help when the device itself shouldn't behave like that.  It just confuses me visually and when I use these values for the PI control. 

 

Unfortunately, I didn't use Putty.

For non-LabVIEW tests, I used - Advanced Serial Port Monitor 

0 Kudos
Message 8 of 11
(55 Views)

Hi Seth,

 


@SeraphimSeth wrote:

But even with the C\sT%d\sS%f\sI%d format, any of the following lines gives an error
(CT2560 S1.000 I045;
C25602560 S1.000 I045;
5; C T2559 559 S1.000 I045;)


See this:

Your 2nd example line is invalid because of the missing "T" char, so it doesn't appear in my resulting array…

 

In the end I would search for errors upstream: why do you get invalid message responses at all?

Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
0 Kudos
Message 9 of 11
(37 Views)

Hello, GerdW

 

I asked my colleagues who gave me the device. The answer was: "A few pyrometers were bought a long time ago and they decided to give you one of the decommissioned ones so that you can practice" so I can assume that it may be defective.

But even so, I have no way of saying that I will not do this until you give a working option. 

Could you throw off your VI, I'd like to see how it works for me. Can I use the output in the read buffer from VISA Read instead of Build Array?

 

 

0 Kudos
Message 10 of 11
(15 Views)