I see that login opcodes are 2C and AC prefix and that logout opcodes are 2F and AF. I am curious as to why there are two of these for login/logout and not just one like the other opcodes. If I am writing software to decode them, should I differentiate between them or just decode them as if they are the same? Thanks!
Examples:
Here are two separate units logging in with 2C and AC:
2C 00 02 77 27 FB 17 27 FB 17 F9 DE -- 2620183 - Unit Registration
AC 00 02 77 27 FC 23 27 FC 23 73 66 -- 2620451 - Unit Registration
Here is the same unit logging out with 2F and then AF:
2F 00 00 BE E0 02 77 27 FB 15 02 A5 -- 2620181 - De-Registration
AF 00 00 BE E0 02 77 27 FB 15 E6 91 -- 2620181 - De-Registration
Why two opcodes for each function?
Examples:
Here are two separate units logging in with 2C and AC:
2C 00 02 77 27 FB 17 27 FB 17 F9 DE -- 2620183 - Unit Registration
AC 00 02 77 27 FC 23 27 FC 23 73 66 -- 2620451 - Unit Registration
Here is the same unit logging out with 2F and then AF:
2F 00 00 BE E0 02 77 27 FB 15 02 A5 -- 2620181 - De-Registration
AF 00 00 BE E0 02 77 27 FB 15 E6 91 -- 2620181 - De-Registration
Why two opcodes for each function?