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 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
|
//=========================================================================//
// //
// PonyProg - Serial Device Programmer //
// //
// Copyright (C) 1997-2021 Claudio Lanconelli //
// //
// http://ponyprog.sourceforge.net //
// //
//-------------------------------------------------------------------------//
// //
// 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 version2 of //
// the License, or (at your option) any later version. //
// //
// This program is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU //
// General Public License for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with this program (see LICENSE); if not, write to the //
// Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. //
// //
//=========================================================================//
#include "types.h"
#include "e2awinfo.h"
#include "e2401.h" // Header file
#include "errcode.h"
#include "eeptypes.h"
#include <QDebug>
mE2401::mE2401(e2AppWinInfo *wininfo, BusIO *busp, int def_banksize)
: Device(wininfo, busp, def_banksize),
timeout_loop(200),
sequential_read(1), // lettura di un banco alla volta
writepage_size(1) // scrittura di un byte alla volta (no page write)
{
}
//Determina a quali indirizzi I2C si mappa, e
// se probe_size == 1 anche la dimensione (numero di banchi)
int mE2401::Probe(int probe_size)
{
int retval = 1;
uint8_t ch;
qDebug() << "mE2401::Probe(" << probe_size << ") - IN";
if (GetBus()->Read(0, &ch, 1) != 1)
{
retval = GetBus()->Error();
if (retval == IICERR_NOADDRACK)
{
retval = 0;
}
}
qDebug() << "mE2401::Probe(" << probe_size << ") - OUT";
return retval;
}
int mE2401::Read(int probe, int type)
{
long size = GetSize();
int error = Probe(probe);
if (error < 0)
{
return error;
}
GetBus()->ReadStart();
if (type & PROG_TYPE)
{
if (sequential_read)
{
if (GetBus()->Read(0, GetBufPtr(), size) < size)
{
return GetBus()->Error();
}
}
else
{
int k;
for (k = 0; k < size; k++)
{
if (GetBus()->Read(k, GetBufPtr() + k, 1) != 1)
{
return GetBus()->Error();
}
if (GetBus()->ReadProgress((k + 1) * 100 / size))
{
return OP_ABORTED;
}
}
}
}
GetBus()->ReadEnd();
return size;
}
int mE2401::Write(int probe, int type)
{
long size = GetSize();
int error = Probe(probe);
if (error < 0)
{
return error;
}
GetBus()->WriteStart();
if (type & PROG_TYPE)
{
int j;
uint8_t ch;
for (j = 0; j < size; j += writepage_size)
{
if (GetBus()->Write(j, GetBufPtr() + j, writepage_size) != writepage_size)
{
return GetBus()->Error();
}
int k;
for (k = timeout_loop; k > 0 && GetBus()->Read(j, &ch, 1) != 1; k--)
;
if (k == 0)
{
return E2P_TIMEOUT;
}
if (GetBus()->WriteProgress((j + 1) * 100 / size))
{
return OP_ABORTED;
}
}
}
GetBus()->WriteEnd();
return size;
}
int mE2401::Verify(int type)
{
Probe();
long size = GetSize();
unsigned char *localbuf = new unsigned char[size];
GetBus()->ReadStart();
int rval = 1;
if (type & PROG_TYPE)
{
if (sequential_read)
{
if (GetBus()->Read(0, localbuf, size) < size)
{
return GetBus()->Error();
}
}
else
{
int k;
for (k = 0; k < size; k++)
{
if (GetBus()->Read(k, localbuf + k, 1) != 1)
{
rval = GetBus()->Error();
break;
}
if (GetBus()->ReadProgress((k + 1) * 100 / size))
{
rval = OP_ABORTED;
break;
}
}
}
if (memcmp(GetBufPtr(), localbuf, size) != 0)
{
rval = 0;
}
}
GetBus()->ReadEnd();
delete[] localbuf;
return rval;
}
|