From 59a048b666dbba9c0d897e301266b281fff7ebc9 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Wed, 10 Jun 2020 10:00:05 +0200 Subject: [PATCH] software/libliteeth/tftp: switch to progress bar. --- litex/soc/software/libliteeth/tftp.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/litex/soc/software/libliteeth/tftp.c b/litex/soc/software/libliteeth/tftp.c index c5ac5f389..b976496d8 100644 --- a/litex/soc/software/libliteeth/tftp.c +++ b/litex/soc/software/libliteeth/tftp.c @@ -10,6 +10,8 @@ #include #include +#include + #include "udp.h" #include "tftp.h" @@ -116,7 +118,6 @@ int tftp_get(uint32_t ip, uint16_t server_port, const char *filename, int tries; int i; int length_before; - int spin = 0; if(!udp_arp_resolve(ip)) return -1; @@ -146,14 +147,13 @@ int tftp_get(uint32_t ip, uint16_t server_port, const char *filename, i = 12000000; length_before = total_length; + init_progression_bar(0); while(!transfer_finished) { if(length_before != total_length) { i = 12000000; length_before = total_length; - if ((total_length & 0x7fff) == 0) { // every 32K - putchar("|/-\\"[spin++ % 4]); - putchar('\b'); - } + if ((total_length & (0x8000 - 1)) == 0) + show_progress(-1); } if(i-- == 0) { udp_set_callback(NULL);