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
|
/***************************************************************************
* Copyright (C) 2006 Nicolas Hadacek <hadacek@kde.org> *
* Copyright (C) 2002-2003 Stephen Landamore <stephen@landamore.com> *
* *
* 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 ICD1_H
#define ICD1_H
#include "progs/icd2/base/icd.h"
#include "icd1_data.h"
#include "icd1_serial.h"
namespace Icd1
{
//-----------------------------------------------------------------------------
class Hardware : public Icd::Hardware
{
public:
Hardware(::Programmer::Base &base, const TQString &portDevice);
SerialPort *port() { return static_cast<SerialPort *>(_port); }
// initialization
virtual bool uploadFirmware(const Pic::Memory &memory);
virtual bool setTarget();
// status
virtual bool getFirmwareVersion(VersionData &version);
virtual bool readVoltages(VoltagesData &voltages);
virtual bool setTargetReset(Pic::ResetMode mode);
bool selfTest();
// programming
virtual bool readMemory(Pic::MemoryRangeType type, uint wordOffset, Device::Array &data, const ::Programmer::VerifyData *vdata);
virtual bool writeMemory(Pic::MemoryRangeType type, uint wordOffset, const Device::Array &data);
virtual bool eraseAll();
// debugging
virtual bool readRegister(Address address, BitValue &value, uint nbBytes);
virtual bool writeRegister(Address address, BitValue value, uint nbBytes);
virtual bool resumeRun();
virtual bool step();
virtual bool haltRun();
virtual BitValue getProgramCounter();
private:
virtual bool internalConnect(const TQString &mode);
virtual TQString receivedData() const { return _rx; }
bool sendCommand(uint cmd, BitValue *res = 0, uint timeout = Port::Serial::DEFAULT_TIMEOUT);
bool readBlockCommand(uint nbBytes);
bool gotoMemory(Pic::MemoryRangeType type, uint offset);
};
} // namespace
#endif
|