Sync from fork #3

Open
CommanderRedYT wants to merge 4 commits from CommanderRedYT/main into main
3 changed files with 7 additions and 1 deletions
Showing only changes of commit f65b8ad505 - Show all commits

View File

@@ -44,4 +44,9 @@ config WIFI_LOG_WORKAROUND
bool "Enable disabled-log bug workaround (by enabling certain log statements)" bool "Enable disabled-log bug workaround (by enabling certain log statements)"
default false default false
config WIFI_STA_CONFIG_COUNT
int "Maximum number of STA configurations"
default 5
range 1 10
endmenu endmenu

View File

@@ -163,7 +163,7 @@ struct dual_ant_config
struct sta_config struct sta_config
{ {
std::string hostname; std::string hostname;
std::array<wifi_entry, 10> wifis; std::array<wifi_entry, CONFIG_WIFI_STA_CONFIG_COUNT> wifis;
int8_t min_rssi = -90; int8_t min_rssi = -90;
bool long_range = false; bool long_range = false;
wifi_bandwidth_t bandwidth = WIFI_BW_HT20; wifi_bandwidth_t bandwidth = WIFI_BW_HT20;