Re: RT TCP Write sometimes does not
Rather than use simple TCP for my LabVIEW RT Project, I used Network Streams. My data rates are comparable to yours -- I'm sending 16-24 channels of I16 data at 1KHz, sending 50 samples at a time (or...
View ArticleRe: Problem with intensity graph
There is a difference between "blank" and black". So let's first look at the code:The upper FOR loop can be removed and you can use string to byte array to replace the entire thing (or case to an array...
View ArticleRe: USRP 2955 Not Receiving Signal
Try the niUSRP EX Rx Multiple Inputs (Single Device, Multi Channel) example and see if that works for you. When you say you edit the front end do you mean you change some of the values on the front...
View ArticleRe: Problem with intensity graph
I am very sorry if I was not clear. I called the intensity graph blank as it gave me the same intensity graph before starting the program and thus I called it blank. There is a program which will...
View ArticleRe: Send array of numbers through serial port - Write VISA
i have a problem in my code i want to send numeric array contain of 500*10^3 element when i send i have error message memory is fulli want a way to make asynchronous and send this array by use USB to TTL
View ArticleRe: Problem with intensity graph
I actually did the same things that you have posted in the link with the shift registers but changed it as someone recommended that I use a local variable so I changed my program. It still gave me the...
View ArticleRe: How to achieve high speed data transfer through tcp?
wrote:I must confess I always get confused by Ethernet speed specifications. I know we have 100BaseT drops in our labs, with an option to have a Gigabit Drop (if we pay extra), but is that 100...
View ArticleRe: waint until ms vs ms function
In less words than Bob... Wait Until Next ms Multiple is used for synchronization.Wait ms is used for general waits. Let's just say one of these functions gets called with a timer value of 90 and it is...
View ArticleRe: RT TCP Write sometimes does not
wrote:Rather than use simple TCP for my LabVIEW RT Project, I used Network Streams.Those are not compatible with a C# application.
View ArticleRif.: Temperature to unsigned
Your "Value in" contain a high 14th bit which is spurious (real value is 13 bit wide, as you state). If we mask this bit (or equivalently subtract 8192 from Value in), we still get the correct...
View ArticleRe: chart
From the LabVIEW help:Customizing Graphs and ChartsStrip Chart—Shows running data continuously scrolling from left to right across the chart with old data on the left and new data on the right. A strip...
View ArticleRe: USRP 2955 Not Receiving Signal
Thank you Michael! I tried the example you suggested. At first it didn't work, but then I removed the attenuator on my sma cable. There is screen shot (2920to2955-MultiChan.png) of the tx (2920) and rx...
View ArticleRe: Temperature to unsigned
One problem is that (as noted) there seem to be extra "stuck bits" in the original example. Your code notes that this acts as a 13-bit 2's complement binary. 13 bits means that the "real" values that...
View ArticleRe: Writing Data to Excel File without Report Generation Toolkit
Do you really need to write an Excel (.xlsx) file? Would a SpreadSheet file (a Comma-separate-value, or .csv) file that Excel can open and treat as a SpreadSheet, work for you? If so, use Write...
View ArticleRe: Creating a Test Program
Queued State Machine is a more robust architecture but also requires more time developing it. My first proposal keeps it simple but scalable solution. Greetings!!!
View ArticleExtract string at a specified character
Hi all,I have a string like thisabcd012-_20180601_103629.csvI want to extract only the part before the first underscore ("abcd012-"). Can someone help me with this?Thank you,MV
View ArticleRe: VFD communication Modbus RTU by RS-485
This looks very promising, Thank you! I will try it ASAP and let you know whether or not it worked. I am fairly confident that this MODBUS palette route is the way to go so I am very hopeful that this...
View ArticleRe: Cannot get latch mechanical action on boolean button inside a cluster
Sorry, I didn't quite "get" your original question. Are you trying to use your Cluster inside an Event Structure, and have it "fire" when any of the Buttons is pressed? That's trivial and certainly...
View ArticleRe: waint until ms vs ms function
BS for verbosity, crossrulz for succinctity (is there such a word?). BS
View Article