mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-01 13:14:30 +08:00
FIX: one dot wrong
This commit is contained in:
parent
4dccc340ae
commit
d412a8aa2c
1 changed files with 6 additions and 6 deletions
|
@ -19,12 +19,12 @@ Default LF config is set to:
|
|||
sample_config config = { 1, 8, 1, 95, 0 } ;
|
||||
|
||||
void printConfig() {
|
||||
Dbprintf("LF Sampling config: ");
|
||||
Dbprintf(" [q] divisor..............%d (%d KHz)", config.divisor, 12000 / (config.divisor+1));
|
||||
Dbprintf(" [b] bps..................%d", config.bits_per_sample);
|
||||
Dbprintf(" [d] decimation...........%d", config.decimation);
|
||||
Dbprintf(" [a] averaging............%s", (config.averaging) ? "Yes" : "No");
|
||||
Dbprintf(" [t] trigger threshold....%d", config.trigger_threshold);
|
||||
Dbprintf("LF Sampling config:");
|
||||
Dbprintf(" [q] divisor.............%d (%d KHz)", config.divisor, 12000 / (config.divisor+1));
|
||||
Dbprintf(" [b] bps.................%d", config.bits_per_sample);
|
||||
Dbprintf(" [d] decimation..........%d", config.decimation);
|
||||
Dbprintf(" [a] averaging...........%s", (config.averaging) ? "Yes" : "No");
|
||||
Dbprintf(" [t] trigger threshold...%d", config.trigger_threshold);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue