Hi All,
I want to show system time in Teststand simple user interface application and should stop when I exit the application. Is the Teststand provides any API for that. Please provide more info on that.
Regards,
Anand
Hi All,
I want to show system time in Teststand simple user interface application and should stop when I exit the application. Is the Teststand provides any API for that. Please provide more info on that.
Regards,
Anand
Hi,
I am using Teststand simple user interface . I have to update a string indicator on the front panel by reading station global variable. This variable will be updated in client/application sequence file. which location I can write this part of code in simple user interface(Asking inside which state of the state machine in simple user interface code) that will help me to update string indicator.
Regards,
Anand
Hi everyone,
my colleage and i are new in teststand, unfortunatly we have to do teststand without any teststand training.
We need to setup a workstation were we have/want/need:
We are struggling, deactivating the starting and ending dialog, because the .net assembly which manages the threads is doing some kind of magic in the background. We are aware of the sequence and model context, but we really dont understand how to skip this dialog
Probably there is a easy way, in any case, help is highly appriciated....
Cheers and thanks
Chris
Can someone help with TS string functions?
My goal is to extract the first line starting with "$GPGGA", and then separate it into an array separating at the commas.
Sample input:
$GPGGA,211332.000,4202.4046,N,08802.0322,W,1,8,0.98,274.2,M,-34.1,M,,*6C $PGTOP,3,AXN_3.20,8175,007-21-2014,GNSS_EXTRF_9600,007-05-2014,211333*03 $GPGGA,211333.000,4202.4046,N,08802.0322,W,1,8,0.98,274.2,M,-34.1,M,,*6D $GPGGA,211334.000,4202.4046,N,08802.0322,W,1,8,0.98,274.2,M,-34.1,M,,*6A $GNGSA,A,3,19,28,25,10,,,,,,,,,1.54,0.98,1.19*10
Is the "$" character special in TestStand?
FWIW in python I'd do
s.split('$GPGGA')[1].strip().split(',')
Hello
How to edit the a database schema in TestStand 2016? On TestStand help page there is a mention of a "Statement" and "Column/Parameter" tab but I don't have it on my dialog box...
Thanks
Yannick
I get to see "SeqEdi 5.1.0.240 encountered a problem and need to close" error message for a Step quite often.
Below is the screenshot of the error message I keep getting.
Any help how I can fix this?
Thanks in advance.
Regards,
Sagar Joshi
Hi all
In Teststand Call Executable im trying to use the cmd.exe with the follow argument:
ren c:\\putty_log\\putty.log Mainboard_Str(FileGlobals.serial).txt & move c:\\putty_log\\*.txt p:\\Testreports\\Log\\
But i keep getting "Unexpected token".
If i put the argument in a .bat file and manually enter the serial(number) it Works fine.
Can anyone please tell me what im missing in the argument?
Hi,
I have seen the command CommandKind_BreakOnStepFailure , which breaks on each step failure. I am searching for a command which breaks on each step pass and also breaks on each step. Is the Teststand provides this commands.
Regards,
Anand
Hi ,
Is there any possibility that I could change the menu name in the full feature user interface.
Like Execute and Debug name can be changed from our application specific name.
Regards,
Anand
Hello,
I'm a new user of NI TestStand, and I wish knowed which are the differences between TestStand and VeriStand?
That it's to say, which are the limitations of TestStand compare to Veristand?
Is there any reason to choose one or another solution.
Thanks so much.
In my sequence of TS2016, there's a if...else if...else if...series flow.
but each time the last else if step was skipped even the else if condition is true.
I switch the last "else if" with previous "else if", the new last one still skipped.
anyone can tell why?
Hi,
Thanks in advance. I have a sequence file with multiple operations and i want to count a particular step which is executed in that sequence.
Find the attached image below, there is a step highlighted in the sequence want to count that particular step (Like how many times it has been executed)?
At our company, we have about a half dozen engineers who share the same development tester. We collect all sorts of data. Most engineers only want to display the test name and results after the normal date stamp, tester number, time, operator number etc. Unfortunately, the current setup includes Terminations, Skipped, and Done. This makes a data log unwieldy and difficult to parse. Is there a way to direct TestStand to save only the test name and its associated results? We don't use Labview so a solution would have to be something in the sequence or the use of CVI. Thanks.
Tony
Hi,
I am using a Teststand simple user interface code. I have defined queue in the code and wanted to add the events which user generated. I can add the menu selected events to the queue in menu selection (event handler case). (I brought menu from full feature to simple user interface).
But I want to add the Teststand buttons events like, Run current sequence, Run selected steps, Loop on selected steps, Exit etc.. which I defined for test application.
which part of the code in simple userinterafec I can enqueue this data. The flow for the above buttons handle by the mangers , so I couldn't get the flow of these buttons .
Regards,
Anand
Hello,
I was wondering if I can use tracing speed API in LabVIEW? I found that it's possible Enable/Disable tracing but not the speed rate.
Thanks in advance.
Best regards,
Dooyoung
Hi,
We are doing some Image processing tests and the resultant values are in the range of 10000. We are not able to log the value more than 9999 as it is. We can only log it using a suffix. Can any one tell me a method to see the value above 9999 as it is. Should i change some settings or some thing.
Regards,
Alekhya
hi,
I want to run steps in parallel mode, so i am using sequence call- > use new thread option in teststand
my question is how to identify in the TestExec engine, the 2nd thread prints inside exViewMgr_TraceEvent
so that i could control this thread prints
Hello,
I have an array of containers in sequence, it contains numbers and containers, the fields of containers are also numbers.
How can I assign values to these numeric variables programmable?
I tried setelements() function, but it convert containers to a simple numeric elements.
I can only see 8x8 examples on NI MIMO using 292x .. However, I noticed on Ettus that they wrote
If common PPS and 10 MHz signals are distributed to USRP N-Series devices, it is theoretically possible to build arbitrarily large MIMO systems. In practice, developers have built systems with up to 16 synchronized USRP devices.
and as I understand the N-series in Ettus are comparable to the 292x series in NI ..
Can anyone comment on the possibility on going high order to 16 x 16 using NI 2920 ??
I have a DLL that use the ResultList Array to generate xml file.
It works fine with sequentialModel.
But doesn't work with parallelModel since the result of the test is contain in the object Reference Parameters.TestSocket.MainSequenceResults.
I try to derefence it as Locals.ResultList = *Parameters.TestSocket.MainSequenceResults but it cause a run-time error.
How do I convert the Parameters.TestSocket.MainSequenceResults to an Array of Result to match the one for sequentialModel?
Thanks