Inspection of packages: how to find 5 different packages?

Hello

I want to inspect the I2C traffic. In my traffic are 5 different packages. I want to detect the and if all are detected that I want to leave the VI with a REAL. If this isn't the case, I want a time-out and a FAKE as a return.

Everything works except the assessment. Basically my VI should do the following:

Inspect the DATA

{

If Condition 1 found, set bit 1

If Condition 2 found, set bit 2

If the Condition 3 found, set bit 3

If Condition 4 found, set bit 4

If Condition 5 found, set bit 5

++ rehearsals

}

If AND AND AND bits4 AND bit5 bit3 bit2 bit1: Returns TRUE

If > 100 repetitions: return the FALSE value

Repeat

My problem is: How can I set a little and keep it set? Let's say, I find the Condition 1 and set it. In the next iteration, I find condition 2 and set bit 2. But, in the same iteration, Condition 1 is not found and thus 1 bit is again. So I never achieve this, all bits are set.

I hope I could make me clear and would be happy to all solutions. I am on labview base, so no access to the events.

Kind regards

Christian

Hi spacing,

How transmit you data to an iteration of one loop at the other?

The Buzzword here is "register shift '!

If you would store stores your requirements with

IF (condition1 is found) OR (condition1-flag) THEN (set true condition1)

Tags: NI Software

Similar Questions

  • How to find these different namespaces in the schema?

    Hello

    I heard that this schema contains different namespaces. How to find these different namespaces in the schema?

    I checked with this, but it is throwing "table or view does not exist.

    Select the namespace of v$ librarycache.


    Thank you
    Praveen

    Are you referring to this? From the reference manual of the SQL language under the schema object names and qualifiers

    7. part of a namespace, no two objects can have the same name.
    The following schema objects share a namespace:
    Tables
    Display
    Sequences
    Private synonyms
    Autonomous procedures
    Autonomous stored functions
    Packages
    Materialized views
    User-defined types

    Each of the following schema objects has its own namespace:
    Index
    Constraints
    Clusters
    Database triggers
    Private database links
    Dimensions

    Because tables and views are in the same namespace, a table and a view in the same schema cannot have the same name. However, the tables and indexes are in different namespaces. Therefore, a table and an index in the same schema may have the same name.

    Each schema in the database has its own namespaces for objects that it contains. This means, for example, two tables in different schemas are in different namespaces and can have the same name.

    Each of the following schema objects also have its own namespace:
    User roles
    Public synonyms
    Links to public database
    Storage spaces
    Profiles of school boards
    The files (PFILEs) settings and server settings (SPFILEs) files

    Because objects in these namespaces do not appear in the drawings, these namespaces cover the entire base.

    That's why you can do:

    SQL> create table t (id number, descr varchar2(10));
    
    Table created.
    
    SQL> alter table t add constraint t check (mod(id,2) = 0);
    
    Table altered.
    
    SQL> create index t on t(id);
    
    Index created.
    
    SQL> create trigger t
      2  before update on t
      3  begin
      4     dbms_output.put_line('T Trigger');
      5  end;
      6  /
    
    Trigger created.
    

    but not:

    SQL> create view t as select * from t;
    create view t as select * from t
                *
    ERROR at line 1:
    ORA-00955: name is already used by an existing object
    

    or

    SQL> create procedure t
      2  begin
      3     null;
      4  end;
      5  /
    create procedure t
    *
    ERROR at line 1:
    ORA-00955: name is already used by an existing object
    

    John

  • How to find the different languages of an indd Document?

    Dear friends,

    I use multi-language books. How to find the language in the following list (just I want find option only).

    1. English: UK
    2. German: The old rules

    It is possible to find/replace option. Please suggest a friend

    Thanks in advance

    Hi Karthik,

    Try this,

    app.findTextPreferences = null;

    app.findTextPreferences.appliedLanguage = "English UK:";

    var ukText = app.activeDocument.findText ();

    app.findTextPreferences = null;

    for (var i = 0; i)<>

    $.writeln (ukText [i] .silence);

    app.findTextPreferences.appliedLanguage = "German: old Rules ';

    var gerText = app.activeDocument.findText ();

    app.findTextPreferences = null;

    for (var j = 0; j)<>

    $.writeln (gerText [j] .silence);

  • How to find a different string to 'off '.

    I have an array of strings, and I need to know the index of something that is different from the string "off".

    The search function for 1 table D can return me only the index where to find something, and not the index of the string that is different from this... Is there any function for this?

    For example, I have a table like the (off, off, off, standard), and I need the 3 for the standard string index.

    Thank you

    Thai

    Just re-read the question and realized that you want the index:

  • How to find 2 different characters in a string

    Hi all
    I would like to delete ' t "and"Z"of" 20110428T 10: 33:45Z "and convert the string to a date/time." I was watching instr, function, but which allows to search for a character only.

    Thans for help.

    SELECT TO_DATE (REPLACE (REPLACE (' 20110428T 10: 33:45Z ',' t ', "), 'Z',"), 'Hh24:mi:ss YYYYMMDD') OUT FROM DUAL

  • Have deleted implementing up-to-date, but while they inspected I think it's still in my system in my history how to find the files to remove it completely?

    Original title: Remove KB3035583

    I deleted the update, but while they were inspecting it, I think it's still in my system in my history how to find the files to remove it completely?

    I am running Windows 7

    Microsoft have now updated the status of GWX, whenever changes to update is downloaded as a new update re. It is not beyond their intrigues to GWX ineffective as well. Unfortunately we have to be patient until 29 July when, according to the assurances of Microsoft this mess will be disabled. I don't know if there is code to turn it off or we wanted yet another update to do.

  • How to find the status of the package (valid/invalid) was at one time

    How to find the status of the package (valid/invalid) was at one time?
    I want to find the status of an oracle package to 15:00 yesterday. Today, the status of this package is INVALID.
    I'm sure it was VALID yesterday. But no way to prove it. Can any one help please?
    I can generate AWR report for the last 7 days...

    Try to use a flashback, like this query:

    select object_name, object_type, status
    from dba_objects AS OF TIMESTAMP (SYSTIMESTAMP - INTERVAL '18' HOUR)  -- 18 hours ago
    where object_name = 'MY_OBJECT'
    ;
    

    If you have not granted privs FLASHBACK, you may connect as SYS to make a request flashback on a table data dictionary.
    But this should give you the info you need - if it's still in cancellation.

  • How to find out what the police are actually using Firefox?

    How to find out what the police are actually using Firefox?
    Inspect the element don't say what substitute fonts.

    Firefox 24 ESR has the tab fonts in the Inspector, which shouldn't be a problem.

  • Satellite U500 - 11 c: how to find drivers for Win 7

    Hello

    I bought a 11 c U500 and I would install Windows seven.
    But I have a problem, I do not know how to find all the drivers to work with windows seven.

    Is it possible to use the same drivers with windows vista?

    Do you know where I can find the drivers for my laptop with windows 7?

    Thanks much adavance.

    Hello

    Right now, you will not find Windows 7 on Toshiba European pilots pilot page because the Win7 is not official on the market.
    But I found some beta drivers on the Toshiba page we.

    http://www.CSD.Toshiba.com/cgi-bin/TAIS/support/JSP/home.jsp#

    Here you can find the drivers for different laptop series I think U505 series is very similar to U500 so try the drivers!

    Good bye

  • average of k: how to find the data clustred; : or how to assign number t0 each data group

    Hi Member

    I have download the LabVIEW Machine https://decibel.ni.com/content/docs/DOC-19328 learning package

    I want to run the K average algorithm to group the image in a group of two or three or more

    the problem is how to find the result I mean the image of clustred', the image that contain 2 or three threatened value only

    or how aasign a 1 value for all the intesity who

    belong to the cluster a and 255 for data that belongs to group 2

    for the look of the image as binary image?

    a my vi below

    Best regards

    my post before shows how to set the threshold manually using the slider of the graph.

    Here is the version k-means automated help .vi box tools

    Alex

  • How to find the password for wifi connection?

    I'm trying to connect my iphone to my internet TV. On my phone, it asks me a password to connect to my network TV (different from the wifi network that I connected my TV) and I have no idea how to find the password.

    Hello Pam,.

    Welcome to the community of Sony.

    What is the model # of the TV?

    You can locate the model # of the TV from this link.

    The password has been entered in the iPhone is the WPA password.

    See the following article in the knowledge base to use the Wi - Fi Direct feature with your iPhone.

    https://us.en.KB.Sony.com/app/answers/detail/A_ID/34416

    Please mark it as "acceptable Solution" If you find this information useful.

    Kind regards

    Colby

  • Does anyone know how to find the ip address of someone who is to be a nuiscance?

    Does anyone know how to find the ip address of a person who uses different names to communicate with you. A member of the family has problems with someone who does this.  Thank you in advance, I know one of the guys will help me.

    Hi, Ros,

    Use the e-mail headers

    http://www.johnru.com/Active-WHOIS/trace-email.html

  • How to connect 2 different adsl2 + line by different ISP

    How to connect 2 different adsl2 + line by different ISP. We have two LANs, but we have just a printer and we want to share this printer. We have two different line ADSL but different ISP. How can we achieve this?

    Hello

    It is necessary to create the VPN connection.

    You have Windows XP Professional where your printer is installed and connected?

    If so, you can create VPN server in Windows XP Professional PC, wherever your printer is connected. Here's how:

    http://www.zdnetasia.com/configure-Windows-XP-Professional-to-be-a-VPN-server-39050037.htm

    Then, you need to configure modem ADSL (corresponding to your printer) - set port forwarding for port 1723 (PPTP) to the computer with the VPN server.

    You have to find your public IP address of the network where is installed printer - you can see in the ADSL modem (from configuration pages WWW) or open this page in the computer where is installed your printer:

    http://www.whatismyip.com/

    and you will see your public IP address.

    Then what to do – change one different internal subnet network - if one network has 10.0.0.0/24 second network must have another network addressing, for example, 10.0.10.0/24.

    And now set up connection on the computer you want to print - create the VPN connection to connect to the VPN server:

    http://support.Microsoft.com/kb/314076/en

    item 11. -write the public IP address.

    Name and password - use the user and the password of computer with WinXP Pro VPN server, which has the permition to incoming VPN connections.

    After successfully completing the VPN connection - click on Start - run and write \\x.x.x.x , where x.x.x.x is the IP address of the computer with printer and click OK. You'll see printers and shared files. Choose the printer share name and click on the name - the printer will install the drivers and then you can print a test page to the printer print test.

    LC

  • How to find software for my webcam gigawear

    How to find software for my webcam gigawear I lost it

    CS

    Have you tried Googling it?

    What diagnosis have so far?

    Please provide as much detail as you can.

    Before asking a technical question by e-mail or on a Web site forum, follow these steps:

    Try to find an answer in the archives of the forum on what you intend to publish. (Community of Microsoft)
    Try to find an answer by searching the Web
    Try to find an answer by reading the manual.
    Try to find an answer by reading a FAQ.
    Try to find an answer by inspection or testing.

    Suggestions for asking for help on a site.

    http://support.Microsoft.com/kb/555375

    http://www.CatB.org/~ESR/FAQs/smart-questions.html

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_other-windows_update/what-information-to-post-in-the-Windows-Update/1467f44b-ee27-4F7D-98d7-f1c4b35b3395

  • How to find my product key for Windows 7 Ultimate on my computer?

    Anyone know how to find my product key for Windows 7 Ultimate on my computer...  I have several licenses and want to ID what license is on which computer.

    I see the product ID, but can't seem to find the product 'key '.

    Any help would be greatly appreciated.  J

    Original title: find product key

    Here are four utilities, which can display your product keys if they are still there:
    Belarc Advisor: http://www.belarc.com/free_download.html
    (He did a good job of providing a wealth of information.)

    Also: http://www.magicaljellybean.com/keyfinder.shtml
    and: http://www.nirsoft.net/utils/product_cd_key_viewer.html
    and RockXP: http://www.majorgeeks.com/download4138.html which has additional features

    To find out which product keys are used:

    Summary

    If you have multiple Windows licenses and have installed but don't know which one is in use, use the following instructions to double check.

    Details

    Apples of: Windows Vista, Windows 7, Windows 8 and Windows 8.1

    User level: beginner to Expert

    If you have multiple PCs in your home or business running different versions of Windows and would like to have on the same version, you can check that you do not use a product key that is already in use. For example, if you bought 3 copies of Windows 7 Professional, installed one, active, but later wanted to update another PC but can't remember which key was used, this trick can be very handy.

    Click Start, type: cmd

    Press enter on your keyboard

    At the command prompt, type the following command:

    slmgr - dli


    Press enter on your keyboard

    A dialogue window will appear on the screen. This will reveal the partial product key which gives an idea of the product key that is in use. Compare with product keys that you have and it will confirm copy of which is in use. When we're done, click OK and close the command prompt window.

    For users of Windows 8 and Windows 8.1:


    Press the Windows key + X

    Click on command prompt

    Alternative means to quickly launch the command prompt quickly on all versions of Windows:

    Press Windows key + R

    Type: CMD

    Press enter on your keyboard

Maybe you are looking for