🏕️ Renames the feature flag

This commit is contained in:
Rune Harlyk
2024-08-19 18:23:37 +02:00
committed by Rune Harlyk
parent cf55bf509e
commit 586dbc7a9a
14 changed files with 140 additions and 140 deletions
+26 -26
View File
@@ -18,68 +18,68 @@
#define FT_ENABLED(feature) feature
// security feature on by default
#ifndef FT_SECURITY
#define FT_SECURITY 1
#ifndef USE_SECURITY
#define USE_SECURITY 1
#endif
// ntp feature on by default
#ifndef FT_NTP
#define FT_NTP 1
#ifndef USE_NTP
#define USE_NTP 1
#endif
// upload firmware feature off by default
#ifndef FT_UPLOAD_FIRMWARE
#define FT_UPLOAD_FIRMWARE 0
#ifndef USE_UPLOAD_FIRMWARE
#define USE_UPLOAD_FIRMWARE 0
#endif
// download firmware feature off by default
#ifndef FT_DOWNLOAD_FIRMWARE
#define FT_DOWNLOAD_FIRMWARE 0
#ifndef USE_DOWNLOAD_FIRMWARE
#define USE_DOWNLOAD_FIRMWARE 0
#endif
// ESP32 sleep states off by default
#ifndef FT_SLEEP
#define FT_SLEEP 0
#ifndef USE_SLEEP
#define USE_SLEEP 0
#endif
// ESP32 battery state off by default
#ifndef FT_BATTERY
#define FT_BATTERY 0
#ifndef USE_BATTERY
#define USE_BATTERY 0
#endif
// ESP32 analytics on by default
#ifndef FT_ANALYTICS
#define FT_ANALYTICS 1
#ifndef USE_ANALYTICS
#define USE_ANALYTICS 1
#endif
// ESP32 camera off by default
#ifndef FT_CAMERA
#define FT_CAMERA 0
#ifndef USE_CAMERA
#define USE_CAMERA 0
#endif
// ESP32 IMU on by default
#ifndef FT_IMU
#define FT_IMU 1
#ifndef USE_IMU
#define USE_IMU 1
#endif
// ESP32 magnetometer on by default
#ifndef FT_MAG
#define FT_MAG 0
#ifndef USE_MAG
#define USE_MAG 0
#endif
// ESP32 barometer off by default
#ifndef FT_BMP
#define FT_BMP 0
#ifndef USE_BMP
#define USE_BMP 0
#endif
// ESP32 SONAR off by default
#ifndef FT_USS
#define FT_USS 0
#ifndef USE_USS
#define USE_USS 0
#endif
// ESP32 GPS off by default
#ifndef FT_GPS
#define FT_GPS 0
#ifndef USE_GPS
#define USE_GPS 0
#endif
#endif