mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-19 04:49:38 -07:00
fix print clock as decimal instead of uint8_t
This commit is contained in:
parent
c4c3af7c16
commit
9fc602c835
1 changed files with 1 additions and 1 deletions
|
@ -982,7 +982,7 @@ int FSKrawDemod(const char *Cmd, bool verbose)
|
||||||
|
|
||||||
// Now output the bitstream to the scrollback by line of 16 bits
|
// Now output the bitstream to the scrollback by line of 16 bits
|
||||||
if (verbose || g_debugMode) {
|
if (verbose || g_debugMode) {
|
||||||
PrintAndLog("\nUsing Clock:%d, invert:%d, fchigh:%d, fclow:%d", rfLen, invert, fchigh, fclow);
|
PrintAndLog("\nUsing Clock:%hu, invert:%hu, fchigh:%hu, fclow:%hu", rfLen, invert, fchigh, fclow);
|
||||||
PrintAndLog("%s decoded bitstream:",GetFSKType(fchigh,fclow,invert));
|
PrintAndLog("%s decoded bitstream:",GetFSKType(fchigh,fclow,invert));
|
||||||
printDemodBuff();
|
printDemodBuff();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue