mirror of
https://github.com/g4klx/MMDVMHost.git
synced 2025-12-06 05:32:00 +01:00
Correct variable assignment
This commit is contained in:
parent
d7fe8f1d47
commit
90a10560d7
|
|
@ -128,8 +128,9 @@ void loop()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool lockout = false;
|
||||||
#if defined(USE_LOCKOUT)
|
#if defined(USE_LOCKOUT)
|
||||||
bool lockout = digitalRead(PIN_LOCKOUT) == HIGH;
|
lockout = digitalRead(PIN_LOCKOUT) == HIGH;
|
||||||
#endif
|
#endif
|
||||||
if (lockout != m_lockout) {
|
if (lockout != m_lockout) {
|
||||||
uint8_t data[4U];
|
uint8_t data[4U];
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue