| 
    COMMS
    
   Template library intended to help with implementation of communication protocols. 
   | 
 
Contains definition of comms::frame::checksum::Crc. More...
#include "comms/cast.h"#include "comms/details/tag.h"#include "comms/util/type_traits.h"#include <array>#include <cstdint>#include <limits>#include <type_traits>Go to the source code of this file.
Classes | |
| class | comms::frame::checksum::Crc< TResult, TPoly, TInit, TFin, TReflect, TReflectRem > | 
| Calculate CRC values of all the bytes in the sequence.  More... | |
Namespaces | |
| namespace | comms | 
| Main namespace for all classes / functions of COMMS library.  | |
| namespace | comms::frame | 
| Namespace that contains definition of layers that can be used to wrap message data with transport data.  | |
| namespace | comms::frame::checksum | 
| Namespace that contains definition of checksum calculator classes which can be used with comms::frame::ChecksumLayer transport layer class.  | |
Typedefs | |
| using | comms::frame::checksum::Crc_16 = Crc< std::uint16_t, 0x8005, 0, 0, true, true > | 
| Alias to Crc checksum calculator for standard CRC-16.   | |
| using | comms::frame::checksum::Crc_32 = Crc< std::uint32_t, 0x04c11db7, 0xffffffff, 0xffffffff, true, true > | 
| Alias to Crc checksum calculator for standard CRC-32.   | |
| using | comms::frame::checksum::Crc_CCITT = Crc< std::uint16_t, 0x1021, 0xffff > | 
| Alias to Crc checksum calculator for CRC-CCITT.   | |
Contains definition of comms::frame::checksum::Crc.