You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Driver::HandleApplicationCommandHandlerRequest a check exists that looks to ignore duplicate messsages. This check always compares the full buffer length (254 bytes) to see if the message received is a duplicate of the last message, whereas the length of the actual messages varies and thus the buffer may still contain bytes left over from previous messages. Effectively the comparison may fail to detect a duplicate because of this.
The text was updated successfully, but these errors were encountered:
In Driver::HandleApplicationCommandHandlerRequest a check exists that looks to ignore duplicate messsages. This check always compares the full buffer length (254 bytes) to see if the message received is a duplicate of the last message, whereas the length of the actual messages varies and thus the buffer may still contain bytes left over from previous messages. Effectively the comparison may fail to detect a duplicate because of this.
The text was updated successfully, but these errors were encountered: