From 10d435d2f9a1a70a8fb105f266620d9808b26481 Mon Sep 17 00:00:00 2001 From: David Voswinkel Date: Sun, 5 Jul 2009 11:37:42 +0200 Subject: [PATCH] cleanup dump --- avr/usbload/dump.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/avr/usbload/dump.c b/avr/usbload/dump.c index 7f02afb..c73bb48 100644 --- a/avr/usbload/dump.c +++ b/avr/usbload/dump.c @@ -47,9 +47,7 @@ void dump_memory(uint32_t bottom_addr, uint32_t top_addr) { uint32_t addr; uint8_t byte; - printf("dump_memory: bottom_addr=%08lx top_addr=%08lx\n",bottom_addr, top_addr); sram_bulk_read_start(bottom_addr); - printf("%08lx:", bottom_addr); for ( addr = bottom_addr; addr < top_addr; addr++) { if (addr%0x10 == 0) printf("\n%08lx:", addr);