From bc146e527e9b2c714b52c4392751c3ea2e93bd5a Mon Sep 17 00:00:00 2001 From: Nathan Seidle Date: Wed, 17 Jul 2024 20:35:51 -0600 Subject: [PATCH] Remove compile guards. --- Firmware/RTK_Everywhere/RTK_Everywhere.ino | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Firmware/RTK_Everywhere/RTK_Everywhere.ino b/Firmware/RTK_Everywhere/RTK_Everywhere.ino index 5d4bc4f5c..39e91b8f2 100644 --- a/Firmware/RTK_Everywhere/RTK_Everywhere.ino +++ b/Firmware/RTK_Everywhere/RTK_Everywhere.ino @@ -21,9 +21,9 @@ // To reduce compile times, various parts of the firmware can be disabled/removed if they are not // needed during development -// #define COMPILE_BT // Comment out to remove Bluetooth functionality -// #define COMPILE_WIFI // Comment out to remove WiFi functionality -// #define COMPILE_ETHERNET // Comment out to remove Ethernet (W5500) support +#define COMPILE_BT // Comment out to remove Bluetooth functionality +#define COMPILE_WIFI // Comment out to remove WiFi functionality +#define COMPILE_ETHERNET // Comment out to remove Ethernet (W5500) support #ifdef COMPILE_WIFI #define COMPILE_AP // Requires WiFi. Comment out to remove Access Point functionality