forked from ElTangas/jtag2updi
-
Notifications
You must be signed in to change notification settings - Fork 16
/
dbg.cpp
442 lines (411 loc) · 11.6 KB
/
dbg.cpp
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
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
/*
* dbg.h
*
* Created:5/11/2020
* Author: Spence Konde (tindie.com/stores/drazzy)
* github.com/SpenceKonde
*/
#include <avr/io.h>
#include <stdio.h>
#include "dbg.h"
#include "sys.h"
#if defined(DEBUG_ON)
void DBG::updi_st_ptr_l(uint32_t address) {
#ifdef USE_SPIDEBUG
PORT(SPIPORT)&=~(1<<SSPIN); //lower SSPIN
#endif
DBG::debugWriteByte(0x0D);
DBG::debugWriteByte(0x0A);
DBG::debugWriteStr("st_ptr ");
DBG::debugWriteByte(' ');
DBG::debugWriteHex(address>>16);
DBG::debugWriteHex(address>>8);
DBG::debugWriteHex(address);
#ifdef USE_SPIDEBUG
PORT(SPIPORT)|=1<<SSPIN; //raise SSPIN
#endif
}
void DBG::updi_st_ptr_w(uint16_t address) {
#ifdef USE_SPIDEBUG
PORT(SPIPORT)&=~(1<<SSPIN); //lower SSPIN
#endif
DBG::debugWriteByte(0x0D);
DBG::debugWriteByte(0x0A);
DBG::debugWriteStr("st_ptr ");
DBG::debugWriteHex(address>>8);
DBG::debugWriteByte(' ');
DBG::debugWriteHex(address);
#ifdef USE_SPIDEBUG
PORT(SPIPORT)|=1<<SSPIN; //raise SSPIN
#endif
}
void DBG::updi_lds(uint32_t address) {
#ifdef USE_SPIDEBUG
PORT(SPIPORT)&=~(1<<SSPIN); //lower SSPIN
#endif
DBG::debugWriteByte(0x0D);
DBG::debugWriteByte(0x0A);
DBG::debugWriteStr("lds ");
DBG::debugWriteHex(address>>16);
DBG::debugWriteHex(address>>8);
DBG::debugWriteHex(address);
DBG::debugWriteByte(' ');
#ifdef USE_SPIDEBUG
PORT(SPIPORT)|=1<<SSPIN; //raise SSPIN
#endif
}
void DBG::updi_lds(uint16_t address) {
#ifdef USE_SPIDEBUG
PORT(SPIPORT)&=~(1<<SSPIN); //lower SSPIN
#endif
DBG::debugWriteByte(0x0D);
DBG::debugWriteByte(0x0A);
DBG::debugWriteStr("lds ");
DBG::debugWriteHex(address>>8);
DBG::debugWriteHex(address);
DBG::debugWriteByte(' ');
#ifdef USE_SPIDEBUG
PORT(SPIPORT)|=1<<SSPIN; //raise SSPIN
#endif
}
void DBG::updi_sts(uint32_t address, uint16_t data) {
#ifdef USE_SPIDEBUG
PORT(SPIPORT)&=~(1<<SSPIN); //lower SSPIN
#endif
DBG::debugWriteByte(0x0D);
DBG::debugWriteByte(0x0A);
DBG::debugWriteStr("sts ");
DBG::debugWriteHex(address>>16);
DBG::debugWriteHex(address>>8);
DBG::debugWriteHex(address);
DBG::debugWriteByte(' ');
DBG::debugWriteHex(data);
DBG::debugWriteByte(' ');
DBG::debugWriteHex(data>>8);
#ifdef USE_SPIDEBUG
PORT(SPIPORT)|=1<<SSPIN; //raise SSPIN
#endif
}
void DBG::updi_sts(uint32_t address, uint8_t data) {
#ifdef USE_SPIDEBUG
PORT(SPIPORT)&=~(1<<SSPIN); //lower SSPIN
#endif
DBG::debugWriteByte(0x0D);
DBG::debugWriteByte(0x0A);
DBG::debugWriteStr("sts ");
DBG::debugWriteHex(address>>16);
DBG::debugWriteHex(address>>8);
DBG::debugWriteHex(address);
DBG::debugWriteByte(' ');
DBG::debugWriteHex(data);
#ifdef USE_SPIDEBUG
PORT(SPIPORT)|=1<<SSPIN; //raise SSPIN
#endif
}
void DBG::updi_sts(uint16_t address, uint16_t data) {
#ifdef USE_SPIDEBUG
PORT(SPIPORT)&=~(1<<SSPIN); //lower SSPIN
#endif
DBG::debugWriteByte(0x0D);
DBG::debugWriteByte(0x0A);
DBG::debugWriteStr("sts ");
DBG::debugWriteHex(address>>8);
DBG::debugWriteHex(address);
DBG::debugWriteByte(' ');
DBG::debugWriteHex(data);
DBG::debugWriteByte(' ');
DBG::debugWriteHex(data>>8);
#ifdef USE_SPIDEBUG
PORT(SPIPORT)|=1<<SSPIN; //raise SSPIN
#endif
}
void DBG::updi_sts(uint16_t address, uint8_t data) {
#ifdef USE_SPIDEBUG
PORT(SPIPORT)&=~(1<<SSPIN); //lower SSPIN
#endif
DBG::debugWriteByte(0x0D);
DBG::debugWriteByte(0x0A);
DBG::debugWriteStr("sts ");
DBG::debugWriteHex(address>>8);
DBG::debugWriteHex(address);
DBG::debugWriteByte(' ');
DBG::debugWriteHex(data);
#ifdef USE_SPIDEBUG
PORT(SPIPORT)|=1<<SSPIN; //raise SSPIN
#endif
}
void DBG::updi_ldcs(uint8_t command) {
#ifdef USE_SPIDEBUG
PORT(SPIPORT)&=~(1<<SSPIN); //lower SSPIN
#endif
DBG::debugWriteByte(0x0D);
DBG::debugWriteByte(0x0A);
DBG::debugWriteStr("ldcs ");
DBG::debugWriteHex(command);
DBG::debugWriteByte(' ');
#ifdef USE_SPIDEBUG
PORT(SPIPORT)|=1<<SSPIN; //raise SSPIN
#endif
}
void DBG::updi_stcs(uint8_t command, uint8_t data) {
#ifdef USE_SPIDEBUG
PORT(SPIPORT)&=~(1<<SSPIN); //lower SSPIN
#endif
DBG::debugWriteByte(0x0D);
DBG::debugWriteByte(0x0A);
DBG::debugWriteStr("stcs ");
DBG::debugWriteHex(command);
DBG::debugWriteByte(' ');
DBG::debugWriteHex(data);
#ifdef USE_SPIDEBUG
PORT(SPIPORT)|=1<<SSPIN; //raise SSPIN
#endif
}
void DBG::updi_rep(uint8_t reps) {
#ifdef USE_SPIDEBUG
PORT(SPIPORT)&=~(1<<SSPIN); //lower SSPIN
#endif
DBG::debugWriteByte(0x0D);
DBG::debugWriteByte(0x0A);
DBG::debugWriteStr("rep ");
DBG::debugWriteHex(reps);
#ifdef USE_SPIDEBUG
PORT(SPIPORT)|=1<<SSPIN; //raise SSPIN
#endif
}
void DBG::updi_reset() {
#ifdef USE_SPIDEBUG
PORT(SPIPORT)&=~(1<<SSPIN); //lower SSPIN
#endif
DBG::debugWriteByte(0x0D);
DBG::debugWriteByte(0x0A);
DBG::debugWriteStr("RESET ");
#ifdef USE_SPIDEBUG
PORT(SPIPORT)|=1<<SSPIN; //raise SSPIN
#endif
}
void DBG::updi_reset_on() {
#ifdef USE_SPIDEBUG
PORT(SPIPORT)&=~(1<<SSPIN); //lower SSPIN
#endif
DBG::debugWriteByte(0x0D);
DBG::debugWriteByte(0x0A);
DBG::debugWriteStr("RESET ON");
#ifdef USE_SPIDEBUG
PORT(SPIPORT)|=1<<SSPIN; //raise SSPIN
#endif
}
void DBG::updi_reset_off() {
#ifdef USE_SPIDEBUG
PORT(SPIPORT)&=~(1<<SSPIN); //lower SSPIN
#endif
DBG::debugWriteByte(0x0D);
DBG::debugWriteByte(0x0A);
DBG::debugWriteStr("RESET OFF");
#ifdef USE_SPIDEBUG
PORT(SPIPORT)|=1<<SSPIN; //raise SSPIN
#endif
}
void DBG::updi_post_reset(uint8_t mode) {
#ifdef USE_SPIDEBUG
PORT(SPIPORT)&=~(1<<SSPIN); //lower SSPIN
#endif
DBG::debugWriteByte(0x0D);
DBG::debugWriteByte(0x0A);
DBG::debugWriteStr("NewMode ");
DBG::debugWriteHex(mode);
#ifdef USE_SPIDEBUG
PORT(SPIPORT)|=1<<SSPIN; //raise SSPIN
#endif
}
void DBG::updi_res(uint32_t data, uint8_t isaddr) {
#ifdef USE_SPIDEBUG
PORT(SPIPORT)&=~(1<<SSPIN); //lower SSPIN
#endif
if (isaddr) {
DBG::debugWriteHex(data>>16);
DBG::debugWriteHex(data>>8);
DBG::debugWriteHex(data);
} else {
DBG::debugWriteHex(data);
DBG::debugWriteByte(' ');
DBG::debugWriteHex(data>>8);
DBG::debugWriteByte(' ');
DBG::debugWriteHex(data>>16);
}
#ifdef USE_SPIDEBUG
PORT(SPIPORT)|=1<<SSPIN; //raise SSPIN
#endif
}
void DBG::updi_res(uint16_t data, uint8_t isaddr) {
#ifdef USE_SPIDEBUG
PORT(SPIPORT)&=~(1<<SSPIN); //lower SSPIN
#endif
if (isaddr) {
DBG::debugWriteHex(data>>8);
DBG::debugWriteHex(data);
} else {
DBG::debugWriteHex(data);
DBG::debugWriteByte(' ');
DBG::debugWriteHex(data>>8);
}
#ifdef USE_SPIDEBUG
PORT(SPIPORT)|=1<<SSPIN; //raise SSPIN
#endif
}
void DBG::updi_res(uint8_t data) {
#ifdef USE_SPIDEBUG
PORT(SPIPORT)&=~(1<<SSPIN); //lower SSPIN
#endif
DBG::debugWriteHex(data);
#ifdef USE_SPIDEBUG
PORT(SPIPORT)|=1<<SSPIN; //raise SSPIN
#endif
}
void DBG::updi_key(){
#ifdef USE_SPIDEBUG
PORT(SPIPORT)&=~(1<<SSPIN); //lower SSPIN
#endif
DBG::debugWriteByte(0x0D);
DBG::debugWriteByte(0x0A);
DBG::debugWriteStr("key ");
#ifdef USE_SPIDEBUG
PORT(SPIPORT)|=1<<SSPIN; //raise SSPIN
#endif
}
void DBG::initDebug(void) {
#ifdef USE_SPIDEBUG
DDR(SPIPORT)|=1<<SCKPIN;
DDR(SPIPORT)|=1<<MOSIPIN;
DDR(SPIPORT)|=1<<SSPIN;
PORT(SPIPORT)|=1<<SSPIN;
#endif
#if defined(XAVR)
// Set clock speed to maximum (default 20MHz, or 16MHz set by fuse)
#if defined(USE_USARTDEBUG)
#if !defined(USE_EXTERNAL_OSCILLATOR) && !defined(__AVR_DA__)
#if (F_CPU==20000000UL) //this means we are on the 20MHz oscillator
#ifdef UARTBAUD3V
int8_t sigrow_val = SIGROW.OSC20ERR3V;
#else
int8_t sigrow_val = SIGROW.OSC20ERR5V;
#endif
#else //we are on 16MHz one
#ifdef UARTBAUD3V
int8_t sigrow_val = SIGROW.OSC16ERR3V;
#else
int8_t sigrow_val = SIGROW.OSC16ERR5V;
#endif
#endif
uint32_t baud_setting = ((8 * F_CPU) / BAUDRATE);
baud_setting *= (1024 + sigrow_val);
baud_setting += 512;
baud_setting /= 1024;
#else
uint32_t baud_setting = (((16 * F_CPU) / BAUDRATE) + 1) / 2;
#endif
DEBUGBAUDREG=(uint16_t)baud_setting;
DEBUG_USART.CTRLB = USART_RXMODE_CLK2X_gc | USART_TXEN_bm;
DDR(DEBUG_TX_PORT)|=1<<DEBUG_TX_PIN;
PORT(DEBUG_TX_PORT)|=1<<DEBUG_TX_PIN;
#elif defined(USE_SPIDEBUG)
SPIDEBUG.CTRLA=SPI_MASTER_bm|SPI_ENABLE_bm|((SPI_PRESC_gm|SPI_CLK2X_bm) & SPIPRESC);
SPIDEBUG.CTRLB=SPI_SSD_bm;
#endif
#else //not XAVR
#if defined(USE_SPIDEBUG)
DDR(SPIPORT)|=1<<SCKPIN;
DDR(SPIPORT)|=1<<MOSIPIN;
DDR(SPIPORT)|=1<<SSPIN;
PORT(SPIPORT)|=1<<SSPIN;
SPSR=(SPIPRESC&1); //set SPI2X if wanted
SPCR=(1<<MSTR) |(1<<SPE)| ((SPIPRESC>>1)&0x03);
#elif defined(USE_USARTDEBUG)
DEBUG_UCSRB=(1<<TXEN);
DEBUGFLAGS=(1<<U2X);
#endif
#endif
}
void DBG::debug(char prefix, uint8_t data0, uint8_t data1, uint8_t data2){
#ifdef USE_SPIDEBUG
PORT(SPIPORT)&=~(1<<SSPIN); //lower SSPIN
#endif
DBG::debugWriteByte(0x0D);
DBG::debugWriteByte(0x0A);
DBG::debugWriteByte(prefix);
DBG::debugWriteHex(data0);
DBG::debugWriteByte(' ');
DBG::debugWriteHex(data1);
DBG::debugWriteByte(' ');
DBG::debugWriteHex(data2);
#ifdef USE_SPIDEBUG
PORT(SPIPORT)|=1<<SSPIN; //raise SSPIN
#endif
}
void DBG::debug(char prefix, uint8_t data0, uint8_t data1){
#ifdef USE_SPIDEBUG
PORT(SPIPORT)&=~(1<<SSPIN); //lower SSPIN
#endif
DBG::debugWriteByte(0x0D);
DBG::debugWriteByte(0x0A);
DBG::debugWriteByte(prefix);
DBG::debugWriteHex(data0);
DBG::debugWriteByte(' ');
DBG::debugWriteHex(data1);
#ifdef USE_SPIDEBUG
PORT(SPIPORT)|=1<<SSPIN; //raise SSPIN
#endif
}
void DBG::debug(char prefix, uint8_t data0){
#ifdef USE_SPIDEBUG
PORT(SPIPORT)&=~(1<<SSPIN); //lower SSPIN
#endif
DBG::debugWriteByte(0x0D);
DBG::debugWriteByte(0x0A);
DBG::debugWriteByte(prefix);
DBG::debugWriteHex(data0);
#ifdef USE_SPIDEBUG
PORT(SPIPORT)|=1<<SSPIN; //raise SSPIN
#endif
}
void DBG::debug(const char *str, uint8_t newline) {
DBG::debug((const uint8_t *)str, strlen(str), newline, 0);
}
void DBG::debug(const uint8_t *data, size_t datalen , uint8_t newline, uint8_t ashex) {
#ifdef USE_SPIDEBUG
PORT(SPIPORT)&=~(1<<SSPIN); //lower SSPIN
#endif
if (newline) {
DBG::debugWriteByte(0x0D);
DBG::debugWriteByte(0x0A);
}
DBG::debugWriteBytes(data,datalen,ashex);
#ifdef USE_SPIDEBUG
PORT(SPIPORT)|=1<<SSPIN; //raise SSPIN
#endif
}
void DBG::debugWriteStr(const char *str) {
DBG::debugWriteBytes((const uint8_t *)str, strlen(str),0);
}
void DBG::debugWriteBytes(const uint8_t *data, size_t datalen, uint8_t ashex) {
while (datalen--) {
if(ashex){
DBG::debugWriteHex(*data++);
} else {
DBG::debugWriteByte(*data++);
}
}
}
void DBG::debugWriteHex(uint8_t databyte) {
uint8_t b1=(databyte>>4)|'0';
uint8_t b2=(databyte&0x0F)|'0';
if (b1 > '9') b1+=7;
if (b2 > '9') b2+=7;
DBG::debugWriteByte(b1);
DBG::debugWriteByte(b2);
}
void DBG::debugWriteByte(uint8_t databyte) {
DEBUGDATA=databyte;
loop_until_bit_is_set(DEBUGFLAGS,DEBUGSENDNOW);
}
#endif