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
52
53
54
55
56
57
58
59
60
61
62
63
|
/***************************************************************************
* Copyright (C) 2005 Lorenz M�senlechner & Matthias Kranz *
* <[email protected]> *
* Copyright (C) 2005 Nicolas Hadacek <[email protected]> *
* *
* 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. *
***************************************************************************/
#ifndef ICD2_USB_H
#define ICD2_USB_H
#include "icd2.h"
#include "common/port/usb_port.h"
namespace Icd2
{
//-----------------------------------------------------------------------------
class USBPort : public Port::USB
{
public:
USBPort(uint deviceId, Log::Base &log);
bool connectDevice(const TQString &mode);
bool poll(uint size, TQString &s);
bool poll(uint size, TQMemArray<uchar> &data);
bool dataSend(const char *data, uint size);
bool dataReceive(uint size, TQString &s);
private:
uchar _seqnum;
bool _poll;
uint _ctype;
bool _dataSend;
enum SequenceType { Receive = 0, Send, Connect, Poll, Nb_SequenceTypes };
struct SequenceData {
char type;
};
static const SequenceData SEQUENCE_DATA[Nb_SequenceTypes];
bool doSequence(SequenceType type, char *data, uint size);
virtual bool internalSend(const char *data, uint size, uint timeout = 0);
virtual bool internalReceive(uint size, char *data, uint timeout = 0);
};
//------------------------------------------------------------------------------
class USBHardware : public Hardware
{
public:
USBHardware(::Programmer::Base &base);
private:
static const Port::USB::ControlMessageData CONTROL_MESSAGE_DATA[];
enum { ID_FIRMWARE = 0x8000, // ICD2 id before usb firmware is transmitted
ID_CLIENT = 0x8001 // ICD2 id after firmware is transmitted
};
virtual bool internalConnect(const TQString &mode);
};
} // namespace
#endif
|