Both sides previous revision
Previous revision
Next revision
|
Previous revision
|
message_matching [2020/05/13 18:42] wikiadmin |
message_matching [2020/06/05 16:46] (current) wikiadmin |
| |
Somewhat common is to rely on the order of the message matching in TransSECS to match a "default" message after all more-precise messages have been matched. Messages are ordered either by stream/function/alphabetical or alphabetically. In this case, create a message that starts with a Z_ and it will be moved to the last element of the matched list and so matched last. | Somewhat common is to rely on the order of the message matching in TransSECS to match a "default" message after all more-precise messages have been matched. Messages are ordered either by stream/function/alphabetical or alphabetically. In this case, create a message that starts with a Z_ and it will be moved to the last element of the matched list and so matched last. |
| |
| |
| **Type Length and Fixed Length** |
| |
| The "Type Length"/"Fixed Length" property are not strictly part of the message matching logic. These properties apply only to values being sent. If "Type Length" is unchecked, then the value will be sent with the length provided in the "Fixed Length" box. Two common uses are old tools that require string fields to be padded to some length and sending zero-length values -particularly IDs. |
| |
**Remote Command Messages** | **Remote Command Messages** |
| |
If the "Send Err Msg" box is checked, if the "Key" field matches, or there is no "Key" field but the rest of the match fails, TransSECS will automatically return an S2F42 with an error description. If there is only one message with a given "Key" the "Send Err Msg" button should be checked on that message. If there are multiple messages with the same Key, the last message in the tree should have the "Send Err Msg" checked. It's also possible to add "Default" S2F41 messages that do not have a key to force particular errors. Make sure that they are the last S2F41 message and that the "Send Err Msg" box is checked. | If the "Send Err Msg" box is checked, if the "Key" field matches, or there is no "Key" field but the rest of the match fails, TransSECS will automatically return an S2F42 with an error description. If there is only one message with a given "Key" the "Send Err Msg" button should be checked on that message. If there are multiple messages with the same Key, the last message in the tree should have the "Send Err Msg" checked. It's also possible to add "Default" S2F41 messages that do not have a key to force particular errors. Make sure that they are the last S2F41 message and that the "Send Err Msg" box is checked. |
| |
| |
| Ensure that the "Remote Command" and "Send Err Msg" check boxes are checked for your S2F41 and S2F49 message. |
| |
| {{:pasted:20200605-162857.png}} |
| |
| These checkboxes will only be available for valid S2F41/F49 messages. If you message is an S2F41 or S2F49 and these options are not available, check that the format of the messages is valid. |
| |
| The first check is that the command is valid. For example, in this case, there are no S2F41 messages matching "START1". |
| |
| <file> |
| S2F41 W <L[2] |
| <A 'START1'> |
| <L[1] |
| <L[2] |
| <A 'PPID'> |
| <A 'something'> |
| > |
| > |
| > . |
| |
| RECEIVED: 2020.06.05 15:24:33.386 |
| S2F42 <L[2] |
| <B 0x1> /* Decimal[1]: 1 */ |
| <L[0] |
| > |
| > . |
| </file> |
| |
| Next the CPName/CPVal pairs are checked |
| |
| <file> |
| SENT: 2020.06.05 15:27:31.854 |
| S2F41 W <L[2] |
| <A 'START'> |
| <L[1] |
| <L[2] |
| <A 'PPID1'> |
| <A 'something'> |
| > |
| > |
| > . |
| |
| RECEIVED: 2020.06.05 15:27:36.589 |
| S2F42 <L[2] |
| <B 0x3> /* Decimal[1]: 3 */ |
| <L[2] |
| <L[2] |
| <A 'PPID1'> |
| <B 0x1> /* Decimal[1]: 1 */ |
| > |
| <L[2] |
| <A 'PPID'> |
| <B 0x4> /* Decimal[1]: 4 */ |
| > |
| > |
| > . |
| </file> |
| |
| This error indicates that the CPName "PPID1" was found in the message from the host but not in any message at the tool and that the CPName "PPID" was expected and not found in the message from the host. |
| |
| The order of the CPName/CPVal lists is unimportant. TransSECS will match them in any order: |
| <file> |
| SENT: 2020.06.05 15:40:56.908 |
| S2F41 W <L[2] |
| <A 'PP-SELECT'> |
| <L[2] |
| <L[2] |
| <A 'PPID'> |
| <A 'RecipeName'> |
| > |
| <L[2] |
| <A 'LOTID'> |
| <A 'LOTIDxxxxxx'> |
| > |
| > |
| > . |
| |
| RECEIVED: 2020.06.05 15:40:56.918 |
| S2F42 <L[2] |
| <B 0x0> /* Decimal[1]: 0 */ |
| <L[0] |
| > |
| > . |
| |
| SENT: 2020.06.05 15:41:01.292 |
| S2F41 W <L[2] |
| <A 'PP-SELECT'> |
| <L[2] |
| <L[2] |
| <A 'LOTID'> |
| <A 'LOTIDxxxxxx'> |
| > |
| <L[2] |
| <A 'PPID'> |
| <A 'RecipeName'> |
| > |
| > |
| > . |
| |
| RECEIVED: 2020.06.05 15:41:01.307 |
| S2F42 <L[2] |
| <B 0x0> /* Decimal[1]: 0 */ |
| <L[0] |
| > |
| > . |
| </file> |
| |
**Advanced Message Matching** | **Advanced Message Matching** |
We then enter the maximum number of lists we might ever expect in the //"Repeat"// box. On a real tool, the number of ECIDs may exceed 20 and so 200 or 2000 might be a better choice. To avoid having to populate this field with the exact number of ECIDs on the tool, we also check the //"Optional"// box. This means the message will match with any number of repeated lists less than or equal to the maximum number of Repeats we specified. Mark the list as //"Publish"//. | We then enter the maximum number of lists we might ever expect in the //"Repeat"// box. On a real tool, the number of ECIDs may exceed 20 and so 200 or 2000 might be a better choice. To avoid having to populate this field with the exact number of ECIDs on the tool, we also check the //"Optional"// box. This means the message will match with any number of repeated lists less than or equal to the maximum number of Repeats we specified. Mark the list as //"Publish"//. |
| |
When the S2F30 message is received, the list, and the contents of the list, will be Published repeatedly - in this case, once for each ECID. In all cases, the contents of the list will be published first and the list itself will be published last. You can register for notification of the list value changing and be sure that all the list values will be populated on that notification. For example, in an OPC factory automation application you could | When the S2F30 message is received, the list, and the contents of the list, will be Published repeatedly - in this case, once for each ECID. In all cases, the contents of the list will be published first and the list itself will be published last. You can register for notification of the list value changing and be sure that all the list values will be populated on that notification. For example, in an OPC factory automation application you could add a notification script to the //"ECIDList"// tag and read the values of the //ECID//, //ECIDName//, etc. tags in that script. Programmatic examples are provided in the appropriate sections. |
| |
Another likely use for //Repeat// and //Optional// is when the tool may return a list that contains values for "up to" the maximum number of wafers in a cassette. If the tool can process cassettes of up to 25 wafers, it may report 25 values on a full cassette but only report 10 values if the cassette had only 10 wafers. | Another likely use for //Repeat// and //Optional// is when the tool may return a list that contains values for "up to" the maximum number of wafers in a cassette. If the tool can process cassettes of up to 25 wafers, it may report 25 values on a full cassette but only report 10 values if the cassette had only 10 wafers. |