ESKY 150: new protocol

New protocol number 35
No sub protocols
option=0->4 channels, option=1->7 channels
This commit is contained in:
Pascal Langer
2017-11-27 11:20:57 +01:00
parent ea860f24a1
commit 9bf5b0c9a7
6 changed files with 206 additions and 3 deletions

View File

@@ -208,7 +208,7 @@ void setup()
// Setup diagnostic uart before anything else
#ifdef SERIAL_DEBUG
Serial.begin(115200,SERIAL_8N1);
while (!Serial); // wait for serial port to connect...
while (!Serial); // Wait for ever for the serial port to connect...
debug("Multiprotocol version: %d.%d.%d.%d", VERSION_MAJOR, VERSION_MINOR, VERSION_REVISION, VERSION_PATCH_LEVEL);
#endif
@@ -1009,6 +1009,12 @@ static void protocol_init()
remote_callback = CABELL_callback;
break;
#endif
#if defined(ESKY150_NRF24L01_INO)
case MODE_ESKY150:
next_callback=initESKY150();
remote_callback = ESKY150_callback;
break;
#endif
#endif
}
}