1
0
mirror of https://github.com/wfjm/w11.git synced 2026-01-28 21:11:57 +00:00

- migrate to rlink protocol version 4

- Goals for rlink v4
    - 16 bit addresses (instead of 8 bit)
    - more robust encoding, support for error recovery at transport level
    - add features to reduce round trips
      - improved attention handling
      - new 'list abort' command
  - For further details see README_Rlink_V4.txt
- use own C++ based tcl shell tclshcpp instead of tclsh
This commit is contained in:
Walter F.J. Mueller
2014-12-20 16:39:52 +00:00
parent 093d540121
commit d87ac86f53
203 changed files with 9324 additions and 10881 deletions

View File

@@ -1,4 +1,4 @@
// $Id: RlinkAddrMap.cpp 492 2013-02-24 22:14:47Z mueller $
// $Id: RlinkAddrMap.cpp 603 2014-11-09 22:50:26Z mueller $
//
// Copyright 2011-2013 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
//
@@ -21,7 +21,7 @@
/*!
\file
\version $Id: RlinkAddrMap.cpp 492 2013-02-24 22:14:47Z mueller $
\version $Id: RlinkAddrMap.cpp 603 2014-11-09 22:50:26Z mueller $
\brief Implemenation of class RlinkAddrMap.
*/
@@ -170,7 +170,7 @@ void RlinkAddrMap::Print(std::ostream& os, int ind) const
RosFill bl(ind);
for (amap_cit_t it=fAddrMap.begin(); it!=fAddrMap.end(); it++) {
os << bl << RosPrintf((it->second).c_str(), "-s",maxlen)
<< " : " << RosPrintf(it->first, "$x0", 4)
<< " : " << RosPrintf(it->first, "$x0", 6)
<< " " << RosPrintf(it->first, "o0", 6) << endl;
}