fix silent option for getSamples

This commit is contained in:
marshmellow42 2017-04-07 18:10:01 -04:00
commit e8647c5764

View file

@ -1161,7 +1161,7 @@ int getSamples(int n, bool silent)
if(response.arg[0] > 0) if(response.arg[0] > 0)
{ {
sample_config *sc = (sample_config *) response.d.asBytes; sample_config *sc = (sample_config *) response.d.asBytes;
PrintAndLog("Samples @ %d bits/smpl, decimation 1:%d ", sc->bits_per_sample if (!silent) PrintAndLog("Samples @ %d bits/smpl, decimation 1:%d ", sc->bits_per_sample
, sc->decimation); , sc->decimation);
bits_per_sample = sc->bits_per_sample; bits_per_sample = sc->bits_per_sample;
} }