14 #include "oxforddriver.h"
16 XOxfordInterface::XOxfordInterface
17 (
const char *name,
bool runtime,
const shared_ptr<XDriver> &driver)
20 setGPIBWaitBeforeSPoll(10);
23 XOxfordInterface::send(
const XString &str)
throw (XCommError &) {
24 this->send(str.c_str());
30 XCharInterface::send(str);
38 XOxfordInterface::query(
const XString &str)
throw (XCommError &) {
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]) {
56 catch (XCommError &e) {
61 throw XCommError(i18n(
"Oxford Query Error, Initial doesn't match"), __FILE__, __LINE__);
65 XOxfordInterface::open() throw (XInterfaceError &) {
66 XCharInterface::open();
80 catch (XInterfaceError &e) {
87 XOxfordInterface::receive() throw (XCommError &) {
88 XCharInterface::receive();
91 XOxfordInterface::receive(
unsigned int length)
throw (XCommError &) {
92 XCharInterface::receive(length);