length = check_image_in_flash(flash_address);
if(length > 0) {
- printf("Copying %d bytes from 0x%08x to 0x%08x...\n", length, flash_address, ram_address);
+ printf("Copying 0x%08x to 0x%08x (%d bytes)...\n", flash_address, ram_address, length);
offset = 0;
init_progression_bar(length);
while (length > 0) {
}
length = f_size(&file);
- printf("Copying %d bytes from %s to 0x%08x...\n", length, filename, ram_address);
+ printf("Copying %s to 0x%08x (%d bytes)...\n", filename, ram_address, length);
init_progression_bar(length);
offset = 0;
for (;;) {