Skip to content

Commit c0c4cd5

Browse files
authored
Merge pull request #516 from PetteriAimonen/dev_debug_msgs
Comment out forgotten debug messages.
2 parents 3bb6c1d + b2e854a commit c0c4cd5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

simavr/sim/avr_flash.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ avr_flash_write(
4848

4949
avr_core_watch_write(avr, addr, v);
5050

51-
printf("** %s %02x\n", __func__, v);
51+
// printf("** %s %02x\n", __func__, v);
5252

5353
if (avr_regbit_get(avr, p->selfprgen))
5454
avr_cycle_timer_register(avr, 4, avr_progen_clear, p); // 4 cycles is very little!
@@ -190,8 +190,8 @@ avr_flash_init(
190190
avr_flash_t * p)
191191
{
192192
p->io = _io;
193-
printf("%s init SPM %04x BLB %d SIGRD %d\n",
194-
__FUNCTION__, p->r_spm, p->blbset.bit, p->sigrd.bit);
193+
// printf("%s init SPM %04x BLB %d SIGRD %d\n",
194+
// __FUNCTION__, p->r_spm, p->blbset.bit, p->sigrd.bit);
195195

196196
if (!p->tmppage)
197197
p->tmppage = malloc(p->spm_pagesize);

0 commit comments

Comments
 (0)