mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 10:43:01 +08:00
FIX: one too many semicolons for #defines
This commit is contained in:
parent
00271f774a
commit
b1cd7d5ca6
1 changed files with 2 additions and 2 deletions
|
@ -189,9 +189,9 @@ void frame_send_tag(uint16_t response, uint8_t bits) {
|
|||
|
||||
for (; mask < BITMASK(bits); mask <<= 1) {
|
||||
if (response & mask)
|
||||
OPEN_COIL;
|
||||
OPEN_COIL
|
||||
else
|
||||
SHORT_COIL;
|
||||
SHORT_COIL
|
||||
WaitTicks(TAG_BIT_PERIOD);
|
||||
}
|
||||
SHORT_COIL;
|
||||
|
|
Loading…
Reference in a new issue