From 7ef70aa3475436bd95708c703b44b4772db9a8d0 Mon Sep 17 00:00:00 2001 From: Ben Lye Date: Mon, 16 Sep 2019 20:47:13 +0100 Subject: [PATCH] Update Multiprotocol.ino --- Multiprotocol/Multiprotocol.ino | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/Multiprotocol/Multiprotocol.ino b/Multiprotocol/Multiprotocol.ino index 2f05d47..fe82def 100644 --- a/Multiprotocol/Multiprotocol.ino +++ b/Multiprotocol/Multiprotocol.ino @@ -1962,3 +1962,20 @@ static uint32_t random_id(uint16_t address, uint8_t create_new) } } #endif + +// Set the flags for detecting and writing the firmware signature +#if defined (CHECK_FOR_BOOTLOADER) + bool firmwareFlag_CHECK_FOR_BOOTLOADER = true; +#endif +#if defined (MULTI_STATUS) + bool firmwareFlag_MULTI_STATUS = true; +#endif +#if defined (MULTI_TELEMETRY) + bool firmwareFlag_MULTI_TELEMETRY = true; +#endif +#if defined (INVERT_TELEMETRY) + bool firmwareFlag_INVERT_TELEMETRY = true; +#endif +#if defined (DEBUG_SERIAL) + bool firmwareFlag_DEBUG_SERIAL = true; +#endif