blob: 32bc5e346dea3e963bfaf6d5aa87829030af41ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
/***************************************************************************
* Copyright (C) 2005-2006 Nicolas Hadacek <hadacek@kde.org> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#include "prog_specific.h"
#include "generic_prog.h"
//-----------------------------------------------------------------------------
Programmer::DeviceSpecific::DeviceSpecific(Programmer::Base &base)
: Log::Base(&base), _base(base)
{}
//-----------------------------------------------------------------------------
Programmer::Hardware::Hardware(Programmer::Base &base, Port::Base *port, const TQString &name)
: Log::Base(&base), _port(port), _name(name), _base(base)
{}
Programmer::Hardware::~Hardware()
{
delete _port;
}
bool Programmer::Hardware::connectHardware()
{
if (_port) _port->close();
return internalConnectHardware();
}
void Programmer::Hardware::disconnectHardware()
{
if (_port) _port->close();
internalDisconnectHardware();
}
bool Programmer::Hardware::rawWrite(const TQString &data)
{
Q_ASSERT(_port);
TQByteArray a = toAscii(data);
return _port->send(a.data(), a.count());
}
bool Programmer::Hardware::rawRead(uint size, TQString &data)
{
Q_ASSERT(_port);
return _port->receive(size, data);
}
|