-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ZSX signature ? #6
Comments
Have you already tested that all commands are working in the same way as for the ZS series? |
Yes, it's ZSX series. The all command are almost working. |
Implemented in v1.3 |
@absalom-muc I wonder if we have any sense if this difference in siganture comes from the fact whether it uses 22 or 33 byte frames? I don't think we've seen a lot of signature bytes from users to make a sensible statement here? |
yes, this is correct. |
My ZSX signature first byte is 0x6D, not 0x6C.
so I suggest the code
if ((rx_SPIframe[SB0] == 0x6c)
could be
if (((rx_SPIframe[SB0] & 0xfe) == 0x6c)
Thanks.
The text was updated successfully, but these errors were encountered: