X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/e7aee94e6a3f4f7ef38a4d06b837cf6141e731b9..2c0d55d8decee6aad49c134aded8b9c15e3e3178:/winsrc/command.cpp diff --git a/winsrc/command.cpp b/winsrc/command.cpp index 14974528..c7c4a75f 100644 --- a/winsrc/command.cpp +++ b/winsrc/command.cpp @@ -2633,7 +2633,7 @@ static struct { {"norm", CmdNorm,1, " Normalize max/min to +/-500"}, {"plot", CmdPlot,1, " Show graph window"}, {"quit", CmdQuit,1, " Quit program"}, - {"readmem", CmdReadmem,0, " [address] Read memory at decimal address from flash"}, + {"readmem", CmdReadmem,0, " [address] -- Read memory at decimal address from flash"}, {"reset", CmdReset,0, " Reset the Proxmark3"}, {"save", CmdSave,1, " -- Save trace (from graph window)"}, {"scale", CmdScale,1, " -- Set cursor display scale"}, @@ -2749,10 +2749,12 @@ void UsbCommandReceived(UsbCommand *c) vHf = c->ext2 & 0xffff;; peakf = c->ext3 & 0xffff; peakv = c->ext3 >> 16; - PrintToScrollback("# LF antenna: %.2f V @ 125.00Khz", vLf125/1000.0); - PrintToScrollback("# LF antenna: %.2f V @ 134.00Khz", vLf134/1000.0); - PrintToScrollback("# LF optimal: %.2f V @ %.2fKHz", peakv/1000.0, 12000.0/(peakf+1)); - PrintToScrollback("# HF antenna: %.2f V @ 13.56Mhz", vHf/1000.0); + PrintToScrollback(""); + PrintToScrollback(""); + PrintToScrollback("# LF antenna: %5.2f V @ 125.00 kHz", vLf125/1000.0); + PrintToScrollback("# LF antenna: %5.2f V @ 134.00 kHz", vLf134/1000.0); + PrintToScrollback("# LF optimal: %5.2f V @%9.2f kHz", peakv/1000.0, 12000.0/(peakf+1)); + PrintToScrollback("# HF antenna: %5.2f V @ 13.56 MHz", vHf/1000.0); if (peakv<2000) PrintToScrollback("# Your LF antenna is unusable."); else if (peakv<10000)