1
0
mirror of https://github.com/wfjm/w11.git synced 2026-04-24 19:40:39 +00:00
Files
wfjm.w11/tools/src/librlink/RlinkCrc16.hpp
2017-04-28 21:34:40 +02:00

53 lines
1.4 KiB
C++

// $Id: RlinkCrc16.hpp 887 2017-04-28 19:32:52Z mueller $
//
// Copyright 2014- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
//
// This program is free software; you may redistribute and/or modify it under
// the terms of the GNU General Public License as published by the Free
// Software Foundation, either version 2, or at your option any later version.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY, without even the implied warranty of MERCHANTABILITY
// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
// for complete details.
//
// Revision History:
// Date Rev Version Comment
// 2014-11-08 602 1.0 Initial version
// ---------------------------------------------------------------------------
/*!
\file
\brief Declaration of class \c RlinkCrc16.
*/
#ifndef included_Retro_RlinkCrc16
#define included_Retro_RlinkCrc16 1
#include <cstdint>
#include <vector>
namespace Retro {
class RlinkCrc16 {
public:
RlinkCrc16();
~RlinkCrc16();
void Clear();
void AddData(uint8_t data);
uint16_t Crc() const;
protected:
uint16_t fCrc; //!< current crc value
static const uint16_t fCrc16Table[256]; // doxed in cpp
};
} // end namespace Retro
#include "RlinkCrc16.ipp"
#endif