OpenCores
URL https://opencores.org/ocsvn/w11/w11/trunk

Subversion Repositories w11

[/] [w11/] [tags/] [w11a_V0.7/] [tools/] [src/] [librlink/] [RlinkCrc16.hpp] - Diff between revs 27 and 33

Only display areas with differences | Details | Blame | View Log

Rev 27 Rev 33
// $Id: RlinkCrc16.hpp 602 2014-11-08 21:42:47Z mueller $
// $Id: RlinkCrc16.hpp 602 2014-11-08 21:42:47Z mueller $
//
//
// Copyright 2014- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
// 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
// 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
// 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.
// 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
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY, without even the implied warranty of MERCHANTABILITY
// WITHOUT ANY WARRANTY, without even the implied warranty of MERCHANTABILITY
// or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
// or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
// for complete details.
// for complete details.
// 
// 
// Revision History: 
// Revision History: 
// Date         Rev Version  Comment
// Date         Rev Version  Comment
// 2014-11-08   602   1.0    Initial version
// 2014-11-08   602   1.0    Initial version
// ---------------------------------------------------------------------------
// ---------------------------------------------------------------------------
 
 
 
 
/*!
/*!
  \file
  \file
  \version $Id: RlinkCrc16.hpp 602 2014-11-08 21:42:47Z mueller $
  \version $Id: RlinkCrc16.hpp 602 2014-11-08 21:42:47Z mueller $
  \brief   Declaration of class \c RlinkCrc16.
  \brief   Declaration of class \c RlinkCrc16.
*/
*/
 
 
#ifndef included_Retro_RlinkCrc16
#ifndef included_Retro_RlinkCrc16
#define included_Retro_RlinkCrc16 1
#define included_Retro_RlinkCrc16 1
 
 
#include <cstdint>
#include <cstdint>
#include <vector>
#include <vector>
 
 
namespace Retro {
namespace Retro {
 
 
  class RlinkCrc16 {
  class RlinkCrc16 {
    public:
    public:
                    RlinkCrc16();
                    RlinkCrc16();
                   ~RlinkCrc16();
                   ~RlinkCrc16();
 
 
      void          Clear();
      void          Clear();
      void          AddData(uint8_t data);
      void          AddData(uint8_t data);
      uint16_t      Crc() const;
      uint16_t      Crc() const;
 
 
    protected:
    protected:
 
 
      uint16_t      fCrc;                   //!< current crc value
      uint16_t      fCrc;                   //!< current crc value
      static const uint16_t fCrc16Table[256];   // doxed in cpp
      static const uint16_t fCrc16Table[256];   // doxed in cpp
  };
  };
 
 
} // end namespace Retro
} // end namespace Retro
 
 
#include "RlinkCrc16.ipp"
#include "RlinkCrc16.ipp"
 
 
#endif
#endif
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.