From Friday, April 19th (11:00 PM CDT) through Saturday, April 20th (2:00 PM CDT), 2024, ni.com will undergo system upgrades that may result in temporary service interruption.

We appreciate your patience as we improve our online experience.

LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

synching binary serial data

Solved!
Go to solution

LabVIEW is reading from a serial port where 90 bytes are being sent every 2 msec.

The last byte in each set of 90 bytes increments by 1.

So 0,1,2,..., 255, 0, 1, 2..

 

The current program waits long enough time to read 540 bytes.

It then looks in those bytes looking for those incrementing bytes.

 

Is there a better way of doing this?

0 Kudos
Message 1 of 12
(3,585 Views)

POst the code as it is today as well as a large data set that represents a typical stream of bytes read via the serial port.

 

Since the last byte increment using the normal "look for termination" approach will not work so you will have to continually read the byte stream and analyze it in context of multiple messages and "God help us" if a message is dropped and we have to hand the recovery.

 

Quick question before we wonder off into the weeds...

 

Do you control the protocol and can fix it before have to develop the interface?

 

This is a lot like SDLC on the surface (does it use bit-stuffing?)

 

Ben

Retired Senior Automation Systems Architect with Data Science Automation LabVIEW Champion Knight of NI and Prepper LinkedIn Profile YouTube Channel
0 Kudos
Message 2 of 12
(3,580 Views)

The serial data is coming from a custom FPGA board. No flow control.

The board as it is running is ending information through the serial port.

The "gap" between the messages is 2 msec.

The LabVIEW program's job is to parse this flow of bytes and have LEDs on the front panel be on/off depending on the bits in the bytes.

 

 

0 Kudos
Message 3 of 12
(3,567 Views)

Post your code and we will tell you if there are better ways to do what you are trying to do. Having a data set would also be helpful.

 

You were asked that before.

Tim
GHSP
Message 4 of 12
(3,560 Views)

attached

 

no dataset; that's my job to save these bytes

0 Kudos
Message 5 of 12
(3,555 Views)

@psuedonym wrote:

attached

 

no dataset; that's my job to save these bytes


How do you know what to catch if you don't have an example of what to expect?

Bill
CLD
(Mid-Level minion.)
My support system ensures that I don't look totally incompetent.
Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.
Humble author of the CLAD Nugget.
0 Kudos
Message 6 of 12
(3,536 Views)

The only thing I know is that the 90th byte of every message increments by 1 so 0, 1, 2, 3 ..., 255 then rolls over to 0.

All the other bytes can be anything.

And there is 2 msec between every message.

 

 

0 Kudos
Message 7 of 12
(3,525 Views)

The most important "better way" to do this is to do THAT instead.

 

Meaning, follow the question Ben asked earlier about controlling (and changing) the protocol on the sending side.  Are you able to control when to start or stop the serial stream from the FPGA?  If not, it's worth some considerable effort to try to get that protocol changed.  Otherwise it's gonna take even more considerable effort to develop a robust receiving side.

 

If nothing about the FPGA serial stream can be changed, the basic idea of your post-processing seems roughly reasonable, but is also rather fragile with all the hard-coded constants.  For example, how *certain* are you that the packet size will forever and always be exactly 90 bytes?   

 

You should also think about how you're going to recover if you get your 90-byte frames out of sync again. I'd suggest you maintain a recent history buffer because that could help minimize (possibly prevent) data loss while re-syncing.

 

Sorry, out of time now.

 

 

-Kevin P

CAUTION! New LabVIEW adopters -- it's too late for me, but you *can* save yourself. The new subscription policy for LabVIEW puts NI's hand in your wallet for the rest of your working life. Are you sure you're *that* dedicated to LabVIEW? (Summary of my reasons in this post, part of a voluminous thread of mostly complaints starting here).
Message 8 of 12
(3,508 Views)

The only thing that can be changed is the LabVIEW code.

The hardware is set in stone. They have been making this product for many years.

 

.

0 Kudos
Message 9 of 12
(3,506 Views)
Solution
Accepted by psuedonym

OK.

 

I will set the comments about the protocol and the fragility of the data stream possibly screwing with the framing and talk through an approach that I would consider...

 

Let's start with the idea that the receiving LV code is up and listening before the widget start spewing the data stream. In that case we would be able to see complete frames at startup.

 

We could start pulling in bytes and placing them in a 2D array with the dimensions declared by your spec.

 

After we get a complete set with the count incrementing from 0 through 255 we would able to see an array with the far left right column being 0-255.

 

Since the pattern 0-255 is fixed we could index out the last column and compare it to a constant array that is -255. When that condition is met we can say that we are synchronized and can start watch for the 90 byte message and then use the ultimate byte as a "sanity check" that the incoming frame is valid.

 

So a simple approach would read a byte at a time, stuff at the end of an array that is then reshaped as a 2D array, index out the last column compare with the 0-255 pattern. If the check is valid we are synchronized. If not read another byte and repeat the check. That process continues until your buffer is larger that the 255 X 90 in which case we toss the oldest byte.

 

So I suggest you look at;

 

Maintaining an on-going buffer (a shift register is good for this)

Limiting the size of your buffer (255 X 90 is all you need to cache)

Reshaping your array into a 255 X 90

Indexing out column index 89

Comparing aggregates with an array of 0-255

 

Now you could try to cheat and only look at a subset of the 255X90 array but that would require the code try out a bunch of possibilities (0-4 or is it 6-10 or ...) but that would also open us up to a increase data value (like a simple counter) tricking the framing logic.

 

Have fun!

 

Ben    

Retired Senior Automation Systems Architect with Data Science Automation LabVIEW Champion Knight of NI and Prepper LinkedIn Profile YouTube Channel
Message 10 of 12
(3,418 Views)