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

Subversion Repositories w11

[/] [w11/] [tags/] [w11a_V0.61/] [tools/] [src/] [librlink/] [RlinkCommandExpect.hpp] - Rev 40

Go to most recent revision | Compare with Previous | Blame | View Log

// $Id: RlinkCommandExpect.hpp 492 2013-02-24 22:14:47Z mueller $
//
// Copyright 2011- 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
// 2011-03-12   368   1.0    Initial version
// 2011-01-15   355   0.1    First draft
// ---------------------------------------------------------------------------
 
 
/*!
  \file
  \version $Id: RlinkCommandExpect.hpp 492 2013-02-24 22:14:47Z mueller $
  \brief   Declaration of class RlinkCommandExpect.
*/
 
#ifndef included_Retro_RlinkCommandExpect
#define included_Retro_RlinkCommandExpect 1
 
#include <cstdint>
#include <vector>
 
namespace Retro {
 
  class RlinkCommandExpect {
    public:
 
                    RlinkCommandExpect();
      explicit      RlinkCommandExpect(uint8_t stat, uint8_t statmsk=0);
                    RlinkCommandExpect(uint8_t stat, uint8_t statmsk,
                                       uint16_t data, uint16_t datamsk=0);
                    RlinkCommandExpect(uint8_t stat, uint8_t statmsk,
                                       const std::vector<uint16_t>& block);
                    RlinkCommandExpect(uint8_t stat, uint8_t statmsk,
                                       const std::vector<uint16_t>& block,
                                       const std::vector<uint16_t>& blockmsk);
                   ~RlinkCommandExpect();
 
      void          SetStatus(uint8_t stat, uint8_t statmsk=0);
      void          SetData(uint16_t data, uint16_t datamsk=0);
      void          SetBlock(const std::vector<uint16_t>& block);
      void          SetBlock(const std::vector<uint16_t>& block,
                             const std::vector<uint16_t>& blockmsk);
 
      uint8_t       StatusValue() const;
      uint8_t       StatusMask() const;
      uint16_t      DataValue() const;
      uint16_t      DataMask() const;
      const std::vector<uint16_t>& BlockValue() const;
      const std::vector<uint16_t>& BlockMask() const;
 
      bool          StatusCheck(uint8_t val) const;
      bool          DataCheck(uint16_t val) const;
      bool          BlockCheck(size_t ind, uint16_t val) const;
      size_t        BlockCheck(const uint16_t* pval, size_t size) const;
 
      bool          StatusIsChecked() const;
      bool          DataIsChecked() const;
      bool          BlockIsChecked(size_t ind) const;
 
      void          Dump(std::ostream& os, int ind=0, const char* text=0) const;
 
    protected: 
      uint8_t       fStatusVal;             //!< status value
      uint8_t       fStatusMsk;             //!< status mask
      uint16_t      fDataVal;               //!< data value
      uint16_t      fDataMsk;               //!< data mask
      std::vector<uint16_t> fBlockVal;      //!< block value
      std::vector<uint16_t> fBlockMsk;      //!< block mask
  };
 
} // end namespace Retro
 
#include "RlinkCommandExpect.ipp"
 
#endif
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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