:orphan: .. title:: CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER .. kconfig:: CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER ################################## *Max WiFi TX power (dBm)* Type: ``int`` Help ==== .. code-block:: none Set maximum transmit power for WiFi radio. Actual transmit power for high data rates may be lower than this setting. Direct dependencies =================== \ :kconfig:`WIFI_ESP32 ` && \ :kconfig:`WIFI ` *(Includes any dependencies from ifs and menus.)* Default ======= - 20 Kconfig definition ================== At ``/wifi/esp32/Kconfig.esp32:210`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:78`` → ``/wifi/Kconfig:36`` Menu path: (Top) → Device Drivers → Wi-Fi Drivers → ESP32 SoC WiFi support .. code-block:: kconfig config ESP32_PHY_MAX_WIFI_TX_POWER int "Max WiFi TX power (dBm)" range 10 20 default 20 depends on WIFI_ESP32 && WIFI help Set maximum transmit power for WiFi radio. Actual transmit power for high data rates may be lower than this setting. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*