w11 - cpp 0.794
Backend server for Rlink and w11
Loading...
Searching...
No Matches
Rw11UnitRHRP.ipp
Go to the documentation of this file.
1// $Id: Rw11UnitRHRP.ipp 1186 2019-07-12 17:49:59Z mueller $
2// SPDX-License-Identifier: GPL-3.0-or-later
3// Copyright 2015- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
4//
5// Revision History:
6// Date Rev Version Comment
7// 2015-05-14 680 1.0 Initial version
8// 2015-03-21 659 0.1 First draft
9// ---------------------------------------------------------------------------
10
15#include "Rw11UnitRHRP.hpp"
16
22// all method definitions in namespace Retro
23namespace Retro {
24
25//------------------------------------------+-----------------------------------
27
28inline uint16_t Rw11UnitRHRP::Rpdt() const
29{
30 return fRpdt;
31}
32
33//------------------------------------------+-----------------------------------
35
36inline bool Rw11UnitRHRP::IsRmType() const
37{
38 return fRpdt & kDTE_M_RM;
39}
40
41//------------------------------------------+-----------------------------------
43
44inline void Rw11UnitRHRP::SetRpds(uint16_t rpds)
45{
46 fRpds = rpds;
47 return;
48}
49
50//------------------------------------------+-----------------------------------
52
53inline uint16_t Rw11UnitRHRP::Rpds() const
54{
55 return fRpds;
56}
57
58} // end namespace Retro
uint16_t fRpds
drive status
void SetRpds(uint16_t rpds)
FIXME_docs.
bool IsRmType() const
FIXME_docs.
uint16_t Rpds() const
FIXME_docs.
uint16_t Rpdt() const
FIXME_docs.
static const uint16_t kDTE_M_RM
rm type flag
uint16_t fRpdt
drive type (encoded)
Declaration of class ReventLoop.
Definition: ReventLoop.cpp:47