01-12-2012 11:07 AM
i wann process the recieved packet serially by discarding start and end of frame and saving the actual packet
Solved! Go to Solution.
01-12-2012 11:36 AM
What is the format of the packet? You can use string subset and string length if it is a fixed size. If the start and end of frame are unique (never show up in your data) you can remove it with a regular expression or search and replace all.
01-15-2012 11:05 AM
Thank you for the solution.
Another question is my packet is lik AxxFxxxxxxxBxxxWxx goes on where A,F,W,B are codes for address, freq,bandwidth etc and xx are values.
now how to extract "xxx" values n update values of address,freq,bw? also if acknowledgement is asked i shud send stored values of address, freq,bw serially
how to proceed?
01-15-2012 09:56 PM
If your format remains the same, you could use something like this.
02-06-2012 10:32 AM
Thanks for solution but wat happens if format changes eg above soln applies for AxxKxxFxxBxxWxx.. wat happens if F comes aft B or W i mean if format isn`t fixed?
Eagerly waiting for reply