ACS Audio Jack iOS Library
1.0.0
|
The ACRCRC16
class is used to compute a CRC16 checksum from data provided as input value.
More...
#import <ACRCRC16.h>
Instance Methods | |
(uint16_t) | - value |
Returns the CRC16 checksum for all input received. More... | |
(void) | - reset |
Resets the CRC16 checksum to it initial state. More... | |
(void) | - updateWithBytes:length: |
Update this CRC16 checksum with the contents of buffer and reading length bytes of data. More... | |
The ACRCRC16
class is used to compute a CRC16 checksum from data provided as input value.
- (void) reset |
Resets the CRC16 checksum to it initial state.
- (void) updateWithBytes: | (const void *) | bytes | |
length: | (NSUInteger) | length | |
Update this CRC16 checksum with the contents of buffer and reading length bytes of data.
bytes | the byte array from which to read the bytes. |
length | the number of bytes to read from buffer. |
- (uint16_t) value |
Returns the CRC16 checksum for all input received.