Questions tagged [secs]

SECS/GEM is the semiconductor's equipment interface protocol for equipment-to-host data communications

From Wikipedia:

The SECS/GEM is the semiconductor's equipment interface protocol for equipment-to-host data communications. In an automated fab, the interface can start and stop equipment processing, collect measurement data, change variables and select recipes for products.

http://en.wikipedia.org/wiki/SECS/GEM

3 questions
4
votes
1 answer

Is there a library available for the SECS/GEM protocol?

I have to implement a communication between my app and another PC using the industrial standard protocol SECS/GEM PV2. Are there any libraries available that I can use with Delphi? Google didn't give me any usable results so far, maybe someone has…
Holgerwa
  • 3,430
  • 9
  • 42
  • 50
0
votes
2 answers

Getting the two bytes by adding the 16 bit unsigned of the byte array as checksum

I have this array of bytes that I want to calculate to get a 2 byte checksum. byte[] b = {(byte) 0x80, (byte) 0x00, (byte) 0x81, (byte) 0x01, (byte) 0x80, (byte) 0x01,(byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x74}; The checksum should be…
resti
  • 7
  • 2
  • 6
0
votes
1 answer

ANTLR the input matches with the grammar but the program can't realize

I'm writing a parser for SML messages. Input: a file with many SML messages. Ouput: a queue of messages with identified elements. This is my code: grammar SML; options {language = Java;} @header { package SECSParser; import…