Skip to content

Commit

Permalink
Remove compile guards
Browse files Browse the repository at this point in the history
  • Loading branch information
nseidle committed Mar 21, 2024
1 parent b2d8188 commit 3b195f9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Firmware/RTK_Everywhere/RTK_Everywhere.ino
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@

// To reduce compile times, various parts of the firmware can be disabled/removed if they are not
// needed during development
// #define COMPILE_ETHERNET // Comment out to remove Ethernet (W5500) support
// #define COMPILE_WIFI // Comment out to remove WiFi functionality
// #define COMPILE_OTA_AUTO // Comment out to disable automatic over-the-air firmware update
#define COMPILE_ETHERNET // Comment out to remove Ethernet (W5500) support
#define COMPILE_WIFI // Comment out to remove WiFi functionality
#define COMPILE_OTA_AUTO // Comment out to disable automatic over-the-air firmware update

#ifdef COMPILE_WIFI
#define COMPILE_AP // Requires WiFi. Comment out to remove Access Point functionality
#define COMPILE_ESPNOW // Requires WiFi. Comment out to remove ESP-Now functionality.
#endif // COMPILE_WIFI

// #define COMPILE_BT // Comment out to remove Bluetooth functionality
#define COMPILE_BT // Comment out to remove Bluetooth functionality
#define COMPILE_L_BAND // Comment out to remove L-Band functionality
#define COMPILE_UM980 // Comment out to remove UM980 functionality
#define COMPILE_IM19_IMU // Comment out to remove IM19_IMU functionality
Expand Down

0 comments on commit 3b195f9

Please sign in to comment.