-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheeprom_programmer.ino
377 lines (313 loc) · 8.81 KB
/
eeprom_programmer.ino
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
#define CHIP_ENABLED 50
#define WRITE_ENABLED 53
#define OUTPUT_ENABLED 52
#define IO0 22
#define IO7 29
#define D0 30
#define D14 44
#define EEPROM_SIZE 32768L
#define STREAM_BUFFER_SIZE 64
#define CR '\r'
#define LF '\n'
#define BS 0x08
#define DEL 0x7F
const byte cmdBufSize = 128;
int ctxCmd = 0;
char cmdData[cmdBufSize]; // an array to store the received cmd
boolean newCmd = false;
boolean streamComplete = false;
unsigned int streamAddress = 0;
byte buffer[STREAM_BUFFER_SIZE];
int bytesRead = 0;
void setup() {
// disable control pins on init
digitalWrite(CHIP_ENABLED, HIGH);
digitalWrite(WRITE_ENABLED, HIGH);
digitalWrite(OUTPUT_ENABLED, HIGH);
// I think it is a good practice to write before configuring the pins
pinMode(CHIP_ENABLED, OUTPUT);
pinMode(WRITE_ENABLED, OUTPUT);
pinMode(OUTPUT_ENABLED, OUTPUT);
// Initialize address pins as OUTPUT
for (int addr = D0; addr <= D14; addr++)
{
digitalWrite(addr, LOW);
pinMode(addr, OUTPUT);
}
Serial.begin(115200);
while (!Serial) {
; // wait for serial port to connect. Needed for Native USB only
}
Serial.println("Welcome to the EEPROM programmer!");
printMenu();
}
void loop() {
if (ctxCmd == 2) { // process binary file
streamEEPROMBytes();
} else {
recvCmdWithEndMarker();
}
if (newCmd == true) {
processCmd();
}
}
void printMenu() {
Serial.println("Options:");
Serial.println("\t1 - Read ROM");
Serial.println("\t2 - Write ROM");
Serial.println("\t3 - Read byte at address");
Serial.println("\t4 - Write byte to address");
Serial.println("\t5 - Erase ROM - 6502 NOP");
Serial.println("\t6 - Erase ROM");
}
void recvCmdWithEndMarker() {
static byte ndx = 0;
char rc;
while (Serial.available() > 0 && newCmd == false) {
rc = Serial.read();
Serial.print(rc);
if (rc == BS || rc == DEL) { // doesn't handle tabs
cmdData[ndx] = 0;
if (ndx > 0) {
ndx--;
byte back[] = {BS,32, BS};
Serial.write(back, 3);
}
} else if (rc != CR && rc != LF) {
cmdData[ndx] = rc;
ndx++;
if (ndx >= cmdBufSize) {
ndx = cmdBufSize - 1;
}
} else {
Serial.println();
cmdData[ndx] = '\0'; // terminate the string
ndx = 0;
newCmd = true;
}
}
}
void streamEEPROMBytes() {
byte tempBuffer[STREAM_BUFFER_SIZE];
while (Serial.available() > 0 && streamAddress < EEPROM_SIZE) {
int _bytesRead = Serial.readBytes(tempBuffer, STREAM_BUFFER_SIZE - bytesRead);
memcpy(buffer + bytesRead, tempBuffer, _bytesRead);
bytesRead += _bytesRead;
if (bytesRead == STREAM_BUFFER_SIZE && ((streamAddress + bytesRead) <= EEPROM_SIZE)) {
writeEEPROMBytePage(buffer, bytesRead);
Serial.write(0x06);
bytesRead = 0;
}
}
if (streamAddress >= EEPROM_SIZE - 1) {
delay(20);
streamAddress = 0;
ctxCmd = 0;
bytesRead = 0;
resetCtrPins();
Serial.println("Finished writing EEPROM!");
}
}
void processCmd() {
if (ctxCmd == 0) {
char op = cmdData[0];
switch(op) {
case '1':
readEEPROM();
break;
case '2':
ctxCmd = 2;
Serial.println("Stream bytes >");
break;
case '3':
Serial.println("Enter address >");
ctxCmd = 3;
break;
case '4':
Serial.println("Enter address = byte >");
ctxCmd = 4;
break;
case '5':
eraseEEPROM(0xEA);
break;
case '6':
eraseEEPROM(0xFF);
break;
default:
Serial.println("---- Invalid Option!\n");
printMenu();
break;
}
} else if (ctxCmd == 3) {
char **p;
unsigned int address = strtoul(cmdData, p, 10);
if (p != NULL || address >= EEPROM_SIZE) {
Serial.println("Invalid address!");
} else {
readEEPROMAt(address);
}
ctxCmd = 0;
resetCtrPins();
} else if (ctxCmd == 4) {
String addressStr = String(strtok(cmdData, "="));
addressStr.trim();
unsigned int address = addressStr.toInt();
if (address >= EEPROM_SIZE) {
Serial.println("Invalid address!");
ctxCmd = 0;
return;
}
String byteStr = String(strtok(NULL, "="));
byteStr.trim();
unsigned int _byte = byteStr.toInt();
writeEEPROMAt(address, _byte);
ctxCmd = 0;
resetCtrPins();
} else {
Serial.println("Continue with command!");
}
clearCmdBuffer();
}
void clearCmdBuffer() {
newCmd = false;
for (int i = 0; i < cmdBufSize; i++) {
cmdData[i] = 0;
}
}
void readEEPROM() {
Serial.println("EEPROM Contents:");
Serial.println("------------------------------------------------------------------");
setReadMode();
for (unsigned int addr = 0; addr < EEPROM_SIZE; addr++) {
setEEPROMAddress(addr);
byte b = readEEPROMByte();
if (addr == 0 || (addr % 16) == 0) {
Serial.println();
displayAddress(addr);
}
displayByte(b);
}
resetCtrPins();
Serial.println();
Serial.println("------------------------------------------------------------------");
}
void readEEPROMAt(int address) {
setReadMode();
setEEPROMAddress(address);
byte b = readEEPROMByte();
displayByte(address, b);
}
byte readEEPROMByte() {
byte b = 0;
for (int d = IO7; d >= IO0; d--) {
b <<= 1;
b |= digitalRead(d);
}
return b;
}
void writeEEPROMAt(int address, byte _byte) {
setWriteMode();
setEEPROMAddress(address);
writeEEPROMByte(_byte);
displayByte(address, _byte);
}
void writeEEPROMByte(byte _byte) {
for (int io = IO0, b = 0; io <= IO7; io++, b++)
{
digitalWrite(io, bitRead(_byte, b));
}
digitalWrite(WRITE_ENABLED, HIGH);
digitalWrite(WRITE_ENABLED, LOW);
delayMicroseconds(1);
digitalWrite(WRITE_ENABLED, HIGH);
delay(20);
}
void writeEEPROMBytePage(byte page[], int size) {
setWriteMode();
for (int i = 0; i < size; i++) {
setEEPROMAddress(streamAddress++);
for (int io = IO0, b = 0; io <= IO7; io++, b++)
{
digitalWrite(io, bitRead(page[i], b));
}
digitalWrite(WRITE_ENABLED, HIGH);
digitalWrite(WRITE_ENABLED, LOW);
delayMicroseconds(1);
digitalWrite(WRITE_ENABLED, HIGH);
}
delay(20);
Serial.print(streamAddress + 1);
Serial.print(" of ");
Serial.print(EEPROM_SIZE);
Serial.print(" (");
Serial.print(((100L*streamAddress)/(EEPROM_SIZE - 1)));
Serial.println("%)");
}
void eraseEEPROM(byte _byte) {
Serial.println("Erasing EEPROM ");
setWriteMode();
for (unsigned int addr = 0; addr < EEPROM_SIZE; addr++) {
setEEPROMAddress(addr);
for (int io = IO0, b = 0; io <= IO7; io++, b++)
{
digitalWrite(io, bitRead(_byte, b));
}
digitalWrite(WRITE_ENABLED, HIGH);
digitalWrite(WRITE_ENABLED, LOW);
delayMicroseconds(1);
digitalWrite(WRITE_ENABLED, HIGH);
if ((addr + 1) % STREAM_BUFFER_SIZE == 0) {
Serial.print(".");
delay(20);
}
if (((addr + 1) % 4096) == 0) {
Serial.println();
}
}
resetCtrPins();
Serial.println();
Serial.println("EEPROM esased.");
}
void setEEPROMAddress(int address) {
for (int addr = D0, b = 0; addr <= D14; addr++, b++)
{
digitalWrite(addr, bitRead(address, b));
}
}
void displayByte(int address, byte b) {
char buffer[128];
sprintf (buffer, "EEPROM[0x%04X] = 0x%02X", address, b);
Serial.println(buffer);
}
void displayAddress(unsigned int addr) {
char buffer[6];
sprintf (buffer, "[0x%04X .. 0x%04X] ", addr, addr+15);
Serial.print(buffer);
}
void displayByte(byte b) {
char buffer[6];
sprintf (buffer, "%02X ", b);
Serial.print(buffer);
}
void setReadMode() {
digitalWrite(CHIP_ENABLED, LOW);
digitalWrite(OUTPUT_ENABLED, LOW);
digitalWrite(WRITE_ENABLED, HIGH);
// set pin mode for IO pins
for (int d = IO0; d <= IO7; d++) {
pinMode(d, INPUT);
}
}
void setWriteMode() {
digitalWrite(CHIP_ENABLED, LOW);
digitalWrite(OUTPUT_ENABLED, HIGH);
// set pin mode for IO pins
for (int d = IO0; d <= IO7; d++) {
pinMode(d, OUTPUT);
}
}
void resetCtrPins() {
digitalWrite(CHIP_ENABLED, HIGH);
digitalWrite(OUTPUT_ENABLED, HIGH);
digitalWrite(WRITE_ENABLED, HIGH);
}