GM6000 Digital Heater Controller Branch: main
SDX-1330
Crc16CcittFast.h
Go to the documentation of this file.
1#ifndef Cpl_Checksum_Crc16CcittFast_h_
2#define Cpl_Checksum_Crc16CcittFast_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include "Cpl/Checksum/Api16.h"
16
17
18
19///
20namespace Cpl {
21///
22namespace Checksum {
23
24
25/** This class provides an implementation for the 16 Bit CRC-CCITT
26 standard. The CRC has following characteristics (aka CRC-CCITT(0xFFFF):
27 o The polynomial is x16 + x12 + x5 + 1
28 o The Data bytes are NOT reflected
29 o The remainder is NOT reflected.
30 o The final remainder is NOT XOR'd
31 */
32
33class Crc16CcittFast : public Api16
34{
35private:
36 /// Calculated CRC value
37 uint16_t m_crc;
38
39
40public:
41 /// Constructor
42 Crc16CcittFast() noexcept;
43
44
45public:
46 /// See Cpl::Checksum::Ap16
47 void reset( void ) noexcept;
48
49 /// See Cpl::Checksum::Ap16
50 void accumulate( const void* bytes, unsigned numbytes=1 ) noexcept;
51
52 /// See Cpl::Checksum::Ap16
53 uint16_t finalize( void* destBuffer=0 ) noexcept;
54
55 /// See Cpl::Checksum::Ap16
56 bool isOkay( void ) noexcept;
57};
58
59
60}; // end namespaces
61};
62#endif // end header latch
63
This class provides an interface for calculate a 16 bit wide Checksum.
Definition Api16.h:42
This class provides an implementation for the 16 Bit CRC-CCITT standard.
Definition Crc16CcittFast.h:34
Crc16CcittFast() noexcept
Constructor.
void reset(void) noexcept
See Cpl::Checksum::Ap16.
uint16_t finalize(void *destBuffer=0) noexcept
See Cpl::Checksum::Ap16.
bool isOkay(void) noexcept
See Cpl::Checksum::Ap16.
void accumulate(const void *bytes, unsigned numbytes=1) noexcept
See Cpl::Checksum::Ap16.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20