country AT

This commit is contained in:
2021-11-01 23:38:12 +01:00
parent 521a8278bf
commit 8c2ce911ba
2 changed files with 9 additions and 2 deletions

View File

@ -51,7 +51,14 @@ wifi_stack::config wifi_create_config()
{
return wifi_stack::config {
.sta = wifi_create_sta_config(),
.ap = wifi_create_ap_config()
.ap = wifi_create_ap_config(),
.country = wifi_country_t {
.cc = { 'A', 'T', '\0' },
.schan = 1,
.nchan = 13,
.max_tx_power = 30,
.policy = WIFI_COUNTRY_POLICY_MANUAL
}
};
}