How to let two independent, while the loops are scrambling

Hello

I have a while loop for imaging system (PXI) remotely. Another while loop will save the data in parallel with the first through the shared to host variable. But the first loop for the image acquisition must wait for the trigger. For this purpose, the two loops cannot start at the same time. Y at - it an idea to solve this problem? Thanks in advance.

Hello

You can use a shared with a Boolean variable. The variable is set to false by default. During the first loop begins the variable is set to true. The other PC bed the shared variable one waits until it is true. Now the other loop begins.

But you still have the delay of the network, if it is not possible that loops start accurate at the same time.

Tags: NI Software

Similar Questions

  • When I create two keyframes at the same position between keyframes at different positions this way adds a loop. How can I get rid of the loop?

    When I create two keyframes at the same position between keyframes at different positions this way adds a loop. How can I get rid of the loop? I was just by dragging the handles on the vertex point, but I want to get rid of the loop together.

    Focus on the Bezier handles on the motion path in the Composition window. You can select the tool pen (g) and hold down the Alt/Option key to select the tool convert Vertex (it looks like a V on the side) and then fix the handle manually or click on the top of the trajectory to change it to a straight line. You can also play with spatial interpretation Keyframe.

    To avoid this, you can change the interpolation of keyframes in space to linear preferences. Most of the time I don't like straight so I keep my default value of Bézier.

  • While the loop records all the data

    Hello

    I have a LabView program containing two while loops. The first is used to increment a frequency on our machine and the second, which is located in the first, used to take a certain number of points of data to this frequency. After taking these data points, the frequency is supposed to rise again. This happens for a set number of times.

    The problem I have is that the data file as the data points in the second then the loop are supposed to be written in does not display do not all the data points in the program should have taken. For example, if we want the first loop increment of 10 times and the second to take 5 data points every time, we expect to see 50 data points in our files. But we see only 10. The watch file always only an amount of data points equal to the first loop iterations. If we cut our data at that time.

    Someone has an idea what could be our problem?


  • How to open two PDFs at the same time (for example on two related screens)? It was always possible in the previous version of the Adobe Reader software.

    How to open two PDFs at the same time (for example on two related screens)? It was always possible in the previous version of the Adobe Reader software. Now while one of them is open, I can't open the other, because it is hidden, and I have only shown in the taskbar as a thumbnail.

    Hi ewap51098943,

    You can disable this in the Edit menu-> preferences-> General

    Kind regards
    Nicos

  • How to watch two clips at the same time on the other, with an opacity of 50% each.

    How to watch two clips at the same time on the other, with an opacity of 50% each. It is confirmed that the position of the object even two clips of mergers.

    Thank you

    PPut a clip on top of another in the timeline panel. In the video Inspector reduce the opacity of the clip on top.

  • While the loop does not stop until 2 more clicks

    I must say that I'm really not familiar with LV, but Im learning.

    So why is that after I clicked on low stop, I had to click my OK button twice, then my program stopped. Why can't it stop immediately?

    Furthermore, if I want to do some of the dice to table, which wire do I missed?

    Thank you!

    Hi RawtoLV,

    You have a while loop in loop a while. When you run the other while the loop stops when you press the stop button, the inner circle while loop always executes. Since your OK button use latch release, what I noticed is that when you pressed the OK button, it quickly into position from true to false, which never stopped during the operation of loop (maybe because of the wait). Can I ask what are you actually doing with the structure of sequence?

    I would suggest using the event structure in place (http://zone.ni.com/reference/en-XX/help/371361K-01/glang/event_structure/):

    Here are some information about the structure of the event:

    http://www.NI.com/white-paper/3331/en/

    http://www.YouTube.com/watch?v=8eO64fo3Pho

    Warm greetings,

    Lennard.C

  • How to add two lines when the second row is not visible, but also gets the first data line too?

    Mr President

    Jdev worm is 12.2.1

    How to add two lines when the second row is not visible, but also gets the first data line too?

    I want to add two lines like below picture, but want the second to remain invisible.

    tworows.png

    I asked this question but my way of asking was wrong, that's why for me once again.

    Concerning

    Try to follow these steps:

    1. in the database table to add the new column "JOIN_COLUMN" and add the new sequence "JOIN_SEQ".

    2. Add this new column in the entity object. (You can add this in entity object by right clicking on the entity object and then select "Synchronize with database" then the new column and press on sync)

    3. in your bookmark create button to create only one line NOT 2 rows.

    4 - Open the object entity--> java--> java class--> on the entity object class generate and Tick tick on the accessors and methods of data manipulation

    5 - Open the generated class to EntityImpl and go to the doDML method and write this code

      protected void doDML(int operation, TransactionEvent e)
      {
        if(operation == DML_INSERT)
        {
          SequenceImpl seq = new SequenceImpl("JOIN_SEQ", getDBTransaction());
          oracle.jbo.domain.Number seqValue = seq.getSequenceNumber();
          setJoinColumn(seqValue);
          insertSecondRowInDatabase(getAttribute1(), getAttribute2(), getAttribute3(), getJoinColumn());
        }
    
        if(operation == DML_UPDATE)
        {
          updateSecondRowInDatabase(getAttribute1(), getAttribute2(), getAttribute3(), getJoinColumn());
        }
    
        super.doDML(operation, e);
      }
    
      private void insertSecondRowInDatabase(Object value1, Object value2, Object value3, Object joinColumn)
      {
        PreparedStatement stat = null;
        try
        {
          String sql = "Insert into table_name (COLUMN_1,COLUMN_2,COLUMN_3,JOIN_COLUMN, HIDDEN_COLUMN) values ('" + value1 + "','" + value2 + "','" + value3 + "','" + joinColumn + "', 1)";
          stat = getDBTransaction().createPreparedStatement(sql, 1);
          stat.executeUpdate();
        }
        catch (Exception e)
        {
          e.printStackTrace();
        }
        finally
        {
          try
          {
            stat.close();
          }
          catch (Exception e)
          {
            e.printStackTrace();
          }
        }
      }
    
      private void updateSecondRowInDatabase(Object value1, Object value2, Object value3, Object joinColumn)
      {
        PreparedStatement stat = null;
        try
        {
          String sql = "update table_name set column_1='" + value1 + "', column_2='" + value2 + "', column_3='" + value3 + "' where JOIN_COLUMN='" + joinColumn + "'";
          stat = getDBTransaction().createPreparedStatement(sql, 1);
          stat.executeUpdate();
        }
        catch (Exception e)
        {
          e.printStackTrace();
        }
        finally
        {
          try
          {
            stat.close();
          }
          catch (Exception e)
          {
            e.printStackTrace();
          }
        }
      }
    
  • I can't have multiple files open at the same time! I need to compare the content from one to the other. How to display two files at the same time?

    I can't have multiple files open at the same time! I need to compare the content from one to the other. How to display two files at the same time?

    Hi sindres79946597,

    Open Acrobat Reader DC, navigate to the Edit-> Preferences-> General-> uncheck "Open Documents in the new tab in the same window.

    Now, reboot your system, when you open multiple PDFs that all will open in a new window so that you can easily compare.

    Kind regards
    Nicos

  • Portege 3440CT freezes after some time while the files are copied

    Hello all :)

    It seems that I have the same problem as missred in this thread http://forums.computers.toshiba-europe.com/forums/thread.jspa?threadID=19232 (bottom). Unfortunately I can't answer it this is why I am writing here. The version of my laptop is 3440CT.

    My test was to make a win98 HD bootable with directory i386 on it, the start of this drive and run the Setup with winnt.exe. OK, it works, but while the files are copied after awhile it just hangs. I tried with a partition and i386 on the active system partition and with two partitions and i386 on another non-system partition. I don't have floppy or CD for the laptop drive.

    Any ideas what's happening? Is it possible to install XP on the same disk, installing XP is started from?

    Can't wait for your answers ;)

    DZI

    PS: My other tests were:
    -complete the installation of XP on another computer, then move the reader
    -Installation of XP on another computer until it resets first (after you complete composing the installation files), then move the reader
    both without success. I also changed the drive to another as I suspected it is physically damaged. Now I'm ideas ;)

    > OK, it works, but while the files are copied after awhile it just hangs. I tried with a partition and i386 on the active system partition and with two partitions and i386 on another partition system
    To me it sounds more like a HARD or RAM disk as an incorrect Setup procedure failure.

    What do you think?

  • Someone at - it encountered problems with the iPhone 6 if weak reception. the phone goes crazy on his own? I have two employees in the SoCal area having this problem. Both have updated to IOS 9.2 to see if that helped. Any advice would be great!

    the phone goes crazy on his own? I have two employees in the SoCal area having this problem. Both have updated to IOS 9.2 and on the Verizon network. Any advice would be great! «The phone cut, connects during a call to Conference of someone else in (the phone chooses who to call), it basically starts random on the phone stock selection as if someone is trying to use it.»  It puts not only calls on mute.  The keyboard for contacts has been absent for a while, but is now back. "That's what they live. We tried to reset hard phones, the last option that we have not yet tried is wipe it off and start over, but I don't see that as a solution, since one is nine and the other is about 6 months with the same problems accurate.

    Hello FergusonChris,

    Thank you for using communities of Apple Support.

    I understand that your business has iPhones whose screens are behaving erratically.  Given your description of the issue, it seems that the screen may be dirty or there is the screen protector/case that interferes with the screen.  To further support this issue, please see the link below.

    If the screen of your iPhone, iPad or iPod touch does not respond to touch

    Take care.

  • How can I download document while index of area recreation

    CREATE TABLE my_docs)
    ID NUMBER (10) NOT NULL,
    name VARCHAR2 (200) NOT NULL,
    doc BLOB NOT NULL
    );

    ALTER TABLE my_docs ADD)
    CONSTRAINT my_docs_pk PRIMARY KEY (id)
    );

    CREATE SEQUENCE my_docs_seq;

    DIRECTORY to CREATE or REPLACE documents AS "C:\work"

    CREATE OR REPLACE PROCEDURE load_file_to_my_docs (p_file_name IN my_docs.name%TYPE) AS
    v_bfile BFILE.
    v_blob BLOB;
    BEGIN
    INSERT INTO my_docs (id, name, doc)
    VALUES (my_docs_seq. NEXTVAL, p_file_name, empty_blob())
    RETURN doc INTO v_blob;

    v_bfile: = BFILENAME ('DOCUMENTS', p_file_name);
    Dbms_Lob.FileOpen (v_bfile, Dbms_Lob.File_Readonly);
    Dbms_Lob.LoadFromFile (v_blob, v_bfile, Dbms_Lob.Getlength (v_bfile));
    Dbms_Lob.FileClose (v_bfile);

    COMMIT;
    END;
    /

    EXEC load_file_to_my_docs ('any_document_of_PDF_DOC_DOCX');



    -Download any DOCUMENT size 10 m approx. 4-5 documents.


    CREATE INDEX my_docs_doc_idx ON my_docs (doc) INDEXTYPE IS CTXSYS. CONTEXT PARAMETERS ("sync (on commit)");

    DROP INDEX my_docs_doc_idx;

    now to re-create the indexes on the same column

    CREATE INDEX my_docs_doc_idx ON my_docs (doc) INDEXTYPE IS CTXSYS. CONTEXT PARAMETERS ("sync (on commit)");


    - at the same time in another session try to download any document in the table above
    you will face ORA-29861: area index is shown LOADING/FAILURE/UNUSABLE

    How can I download document while index of area recreation

    You can use:

    Your_index ALTER INDEX REBUILD PARAMETERS online ("REPLACE LEXER your_lexer");

  • I have updated to ios 9.3.1 now I have no sound for text messages alerts and alert sounds no calendar! I just missed a meeting disaster. Any ideas how to solve this problem, all the settings are correct.

    I have updated to ios 9.3.1 now I have no sound for text messages alerts and alert sounds no calendar! I just missed a meeting disaster. Any ideas how to solve this problem, all the settings are correct.

    Try a reset...

    Force restart your iPhone: tap on and hold the Home and Sleep/Wake buttons for at least ten seconds, until you see the Apple logo.

    If this does not help, tap settings > general > reset > reset all settings

  • How can I get rid of the gray area in my navigation menu

    How can I get rid of the gray area in my navigation menu

    Just change the color after activation of a menu item. Take into account, to change the colors in erery one State (States Panel).

  • Tool: how to choose an image inside the image area that is out of reach

    Tool: how to choose an image inside the image area that is out of reach?

    See the photo below reference.

    How to move the image inside a box that lies beyond the visible area? (The bottom box)

    When you click the image, you can't get the contour or more unless the image area is expanded to include the hidden area.

    Am I missing something? Thanks for the help.

    Vannon

    Picture 1.jpg

    You can move the object back in the frame by clicking on the button "Content Center" to the right (this is located in your toolbar at the top).

    Or you can use the arrows on your keyboard to move it as well.

  • How to access a folder shared by two computers while the computer is in offline mode?

    One computer is windows 7, while the other windows XP. Help, please!

    Hi David,

    Windows 7 Ultimate, Professional and Enterprise has the possibility to access the folders in offline mode. Windows XP Professional also has this option.

    For more information, see the following articles:

    Introduction to offline files

    Work with network files when you are offline

    How to use offline files in Windows XP

    If you use not mentioned previously mentioned editions of windows, then you will not be able to do the same thing.

    Make sure that the computer that hosts the folder isn't offiline.

Maybe you are looking for