mirror of
https://github.com/g4klx/MMDVMHost.git
synced 2026-04-04 14:07:36 +00:00
Add option to disable LOCKOUT on UMP
This commit is contained in:
parent
b59dceb911
commit
d7fe8f1d47
1 changed files with 5 additions and 0 deletions
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
#define PIN_LOCKOUT 7
|
||||
|
||||
// Use the LOCKOUT function on the UMP
|
||||
// #define USE_LOCKOUT
|
||||
|
||||
void setup()
|
||||
{
|
||||
Serial.begin(115200);
|
||||
|
|
@ -125,7 +128,9 @@ void loop()
|
|||
}
|
||||
}
|
||||
|
||||
#if defined(USE_LOCKOUT)
|
||||
bool lockout = digitalRead(PIN_LOCKOUT) == HIGH;
|
||||
#endif
|
||||
if (lockout != m_lockout) {
|
||||
uint8_t data[4U];
|
||||
data[0U] = UMP_FRAME_START;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue