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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
/***************************************************************************
* Copyright (C) 2007 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. *
***************************************************************************/
#ifndef PICKIT2V2_DATA_H
#define PICKIT2V2_DATA_H
#include <tqstring.h>
namespace Pickit2V2
{
enum ScriptType {
ProgEntry = 0x00, ProgExit = 0x01, DeviceIdRead = 0x02, ProgMemoryRead = 0x03,
EraseChipPrepare = 0x04, ProgMemoryAddressSet = 0x05, ProgMemoryWritePrepare = 0x06,
ProgMemoryWrite = 0x07, EepromReadPrepare = 0x08, EepromRead = 0x09, EepromWritePrepare = 0x0A,
EepromWrite = 0x0B, ConfigReadPrepare = 0x0C, ConfigRead = 0x0D, ConfigWritePrepare = 0x0E,
ConfigWrite = 0x0F, UserIdReadPrepare = 0x10, UserIdRead = 0x11, UserIdWritePrepare = 0x12,
UserIdWrite = 0x13, OsccalRead = 0x14, OsccalWrite = 0x15, ChipErase = 0x16,
ProgMemoryErase = 0x17, EepromErase = 0x18, ConfigErase = 0x19,
RowErase = 0x1A, TestMemoryRead = 0x1B, EEpromRowErase = 0x1C,
Nb_ScriptTypes = 0x1D
};
inline ScriptType prepareReadScript(Pic::MemoryRangeType type)
{
switch (type.type()) {
case Pic::MemoryRangeType::Code: return ProgMemoryAddressSet;
case Pic::MemoryRangeType::Eeprom: return EepromReadPrepare;
case Pic::MemoryRangeType::Config: return ConfigReadPrepare;
case Pic::MemoryRangeType::UserId: return UserIdReadPrepare;
default: break;
}
return Nb_ScriptTypes;
}
inline ScriptType readScript(Pic::MemoryRangeType type)
{
switch (type.type()) {
case Pic::MemoryRangeType::Code: return ProgMemoryRead;
case Pic::MemoryRangeType::Eeprom: return EepromRead;
case Pic::MemoryRangeType::Config: return ConfigRead;
case Pic::MemoryRangeType::UserId: return UserIdRead;
case Pic::MemoryRangeType::Cal: return OsccalRead;
default: break;
}
return Nb_ScriptTypes;
}
inline ScriptType prepareWriteScript(Pic::MemoryRangeType type)
{
switch (type.type()) {
case Pic::MemoryRangeType::Code: return ProgMemoryWritePrepare;
case Pic::MemoryRangeType::Eeprom: return EepromWritePrepare;
case Pic::MemoryRangeType::Config: return ConfigWritePrepare;
case Pic::MemoryRangeType::UserId: return UserIdWritePrepare;
default: break;
}
return Nb_ScriptTypes;
}
inline ScriptType writeScript(Pic::MemoryRangeType type)
{
switch (type.type()) {
case Pic::MemoryRangeType::Code: return ProgMemoryWrite;
case Pic::MemoryRangeType::Eeprom: return EepromWrite;
case Pic::MemoryRangeType::Config: return ConfigWrite;
case Pic::MemoryRangeType::UserId: return UserIdWrite;
case Pic::MemoryRangeType::Cal: return OsccalWrite;
default: break;
}
return Nb_ScriptTypes;
}
struct Data {
uchar codeMemoryNbReadWords, eepromMemoryNbReadWords;
uchar codeMemoryNbWriteWords, eepromMemoryNbWriteWords;
uchar scriptIndexes[Nb_ScriptTypes];
};
extern const Data &data(const TQString &device);
struct FamilyData {
Pic::Architecture architecture;
double vpp;
ushort progEntryScript, progExitScript, readDevIdScript;
bool progMemShift;
};
extern const FamilyData FAMILY_DATA[];
struct ScriptData {
const char *name;
ushort version, length;
const ushort data[64];
};
extern const ScriptData SCRIPT_DATA[];
} // namespace
#endif
|