mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-21 05:43:23 -07:00
Fixed all "misleading-indentation" warnings (fixes #187).
This commit is contained in:
parent
9b3c48688e
commit
2943527472
4 changed files with 12 additions and 10 deletions
|
@ -696,14 +696,17 @@ int CmdHF14ACmdRaw(const char *cmd) {
|
|||
c.arg[2] = 13560000 / 1000 / (8*16) * timeout; // timeout in ETUs (time to transfer 1 bit, approx. 9.4 us)
|
||||
}
|
||||
|
||||
if(power)
|
||||
if(power) {
|
||||
c.arg[0] |= ISO14A_NO_DISCONNECT;
|
||||
}
|
||||
|
||||
if(datalen > 0)
|
||||
if(datalen > 0) {
|
||||
c.arg[0] |= ISO14A_RAW;
|
||||
}
|
||||
|
||||
if(topazmode)
|
||||
if(topazmode) {
|
||||
c.arg[0] |= ISO14A_TOPAZMODE;
|
||||
}
|
||||
|
||||
// Max buffer is USB_CMD_DATA_SIZE
|
||||
c.arg[1] = (datalen & 0xFFFF) | (numbits << 16);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue