You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is something we discovered in testing the PR for the Wemos C3 Mini board #6256. You need to be able to tune the WIFI TX Power to connect. (This is true for Arduino and MP as well).
Requested Change:
Add tx_power() method to wifi.radio.
tx_power method should require a single parameter of the desired tx_power in db (tx_power_db)
wifi.radio.tx_power(tx_powr_db) calls esp_wifi_set_max_tx_power(tx_power_d * 4) <-- note the passed value is 4x the tx_power_db.
This is something we discovered in testing the PR for the Wemos C3 Mini board #6256. You need to be able to tune the WIFI TX Power to connect. (This is true for Arduino and MP as well).
Requested Change:
This logic is the same as MP https://github.com/micropython/micropython/blob/ccaf1978072a1d8e63b5e2ee350f15d875dfc1fd/ports/esp32/network_wlan.c#L473
How to test:
The text was updated successfully, but these errors were encountered: