Add option to disable LOCKOUT on UMP

This commit is contained in:
phl0 2016-11-09 09:25:55 +01:00
parent b59dceb911
commit d7fe8f1d47
No known key found for this signature in database
GPG key ID: 48EA1E640798CA9A

View file

@ -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;