oxforddriver.cpp
1 /***************************************************************************
2  Copyright (C) 2002-2015 Kentaro Kitagawa
3  kitagawa@phys.s.u-tokyo.ac.jp
4 
5  This program is free software; you can redistribute it and/or
6  modify it under the terms of the GNU Library General Public
7  License as published by the Free Software Foundation; either
8  version 2 of the License, or (at your option) any later version.
9 
10  You should have received a copy of the GNU Library General
11  Public License and a list of authors along with this program;
12  see the files COPYING and AUTHORS.
13 ***************************************************************************/
14 #include "oxforddriver.h"
15 
16 XOxfordInterface::XOxfordInterface
17 (const char *name, bool runtime, const shared_ptr<XDriver> &driver)
18  : XCharInterface(name, runtime, driver) {
19  setEOS("\r\n");
20  setGPIBWaitBeforeSPoll(10);
21 }
22 void
23 XOxfordInterface::send(const XString &str) throw (XCommError &) {
24  this->send(str.c_str());
25 }
26 void
27 XOxfordInterface::send(const char *str) throw (XInterface::XCommError &) {
28  assert(strlen(str));
29  if(str[0] == '$') {
30  XCharInterface::send(str);
31  }
32  else {
33  //Oxfords always send back echo
34  query(str);
35  }
36 }
37 void
38 XOxfordInterface::query(const XString &str) throw (XCommError &) {
39  query(str.c_str());
40 }
41 void
42 XOxfordInterface::query(const char *str) throw (XInterface::XCommError &) {
43  lock();
44  try {
45  for(int i = 0; i < 30; i++) {
46  XCharInterface::send(str);
47  XCharInterface::receive();
48  if(buffer().size() >= 1)
49  if(buffer()[0] == str[0]) {
50  unlock();
51  return;
52  }
53  msecsleep(100);
54  }
55  }
56  catch (XCommError &e) {
57  unlock();
58  throw e;
59  }
60  unlock();
61  throw XCommError(i18n("Oxford Query Error, Initial doesn't match"), __FILE__, __LINE__);
62 }
63 
64 void
65 XOxfordInterface::open() throw (XInterfaceError &) {
66  XCharInterface::open();
67  // XDriver::Send("@0");
68  send("$Q2");
69  // msecsleep(100);
70  //remote & unlocked
71  send("C3");
72 }
73 
74 void
76  if(isOpened()) {
77  try {
78  send("C0"); //local
79  }
80  catch (XInterfaceError &e) {
81  e.print(getLabel());
82  }
83  }
85 }
86 void
87 XOxfordInterface::receive() throw (XCommError &) {
88  XCharInterface::receive();
89 }
90 void
91 XOxfordInterface::receive(unsigned int length) throw (XCommError &) {
92  XCharInterface::receive(length);
93 }
94 
95 

Generated for KAME4 by  doxygen 1.8.3