From 43e35f5e148f977b866af6f327c8f3808ed775d7 Mon Sep 17 00:00:00 2001 From: Daniel Beer Date: Wed, 20 Oct 2010 14:22:57 +1300 Subject: [PATCH] Notify user when programming in quiet mode. If you use the "prog" command in quiet mode, you don't see the messages telling you what's being written. Instead, the only message you get is "Erasing...", which leads to some confusion. --- prog.c | 1 + 1 file changed, 1 insertion(+) diff --git a/prog.c b/prog.c index 69fddfe..b45b2ac 100644 --- a/prog.c +++ b/prog.c @@ -38,6 +38,7 @@ int prog_flush(struct prog_data *prog) DEVICE_ERASE_MAIN, 0) < 0) return -1; + printc("Programming...\n"); prog->have_erased = 1; }