mirror of
https://github.com/MrUnknownDE/OpenIris-ESPIDF.git
synced 2026-04-19 14:33:45 +02:00
- Applied changes based on PR feedback
- Remove redundant menu entries from default config (will be set by Kconfig.projbuild)
This commit is contained in:
@@ -6,7 +6,7 @@ endmenu
|
||||
|
||||
menu "OpenIris: General Configuration"
|
||||
|
||||
config WIRED_MODE
|
||||
config GENERAL_WIRED_MODE
|
||||
bool "Wired mode"
|
||||
default false
|
||||
|
||||
@@ -39,7 +39,7 @@ endmenu
|
||||
|
||||
menu "OpenIris: WiFi Configuration"
|
||||
|
||||
config MDNS_HOSTNAME
|
||||
config WIFI_MDNS_HOSTNAME
|
||||
string "mDNS hostname"
|
||||
default "openiristracker"
|
||||
|
||||
@@ -51,11 +51,11 @@ menu "OpenIris: WiFi Configuration"
|
||||
string "WiFi password"
|
||||
default ""
|
||||
|
||||
config AP_WIFI_SSID
|
||||
config WIFI_AP_SSID
|
||||
string "Access Point WiFi network name (SSID)"
|
||||
default "EyeTrackVR"
|
||||
|
||||
config AP_WIFI_PASSWORD
|
||||
config WIFI_AP_PASSWORD
|
||||
string "Access Point WiFi password"
|
||||
default "12345678"
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
#include <SerialManager.hpp>
|
||||
#include <RestAPI.hpp>
|
||||
|
||||
#ifdef CONFIG_WIRED_MODE
|
||||
#ifdef CONFIG_GENERAL_WIRED_MODE
|
||||
#include <UVCStream.hpp>
|
||||
#endif
|
||||
|
||||
@@ -48,7 +48,7 @@ StreamServer streamServer(80, stateManager);
|
||||
|
||||
auto *restAPI = new RestAPI("http://0.0.0.0:81", commandManager);
|
||||
|
||||
#ifdef CONFIG_WIRED_MODE
|
||||
#ifdef CONFIG_GENERAL_WIRED_MODE
|
||||
UVCStreamManager uvcStream;
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user