FIX: one too many semicolons for #defines

This commit is contained in:
iceman1001 2016-10-05 22:18:26 +02:00
commit b1cd7d5ca6

View file

@ -189,9 +189,9 @@ void frame_send_tag(uint16_t response, uint8_t bits) {
for (; mask < BITMASK(bits); mask <<= 1) { for (; mask < BITMASK(bits); mask <<= 1) {
if (response & mask) if (response & mask)
OPEN_COIL; OPEN_COIL
else else
SHORT_COIL; SHORT_COIL
WaitTicks(TAG_BIT_PERIOD); WaitTicks(TAG_BIT_PERIOD);
} }
SHORT_COIL; SHORT_COIL;