We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f707608 commit bb5a811Copy full SHA for bb5a811
1 file changed
ports/espressif/common-hal/wifi/Radio.c
@@ -86,9 +86,7 @@ void common_hal_wifi_radio_set_enabled(wifi_radio_obj_t *self, bool enabled) {
86
if (!self->started && enabled) {
87
ESP_ERROR_CHECK(esp_wifi_start());
88
self->started = true;
89
- if (CIRCUITPY_WIFI_DEFAULT_TX_POWER != 20) {
90
- common_hal_wifi_radio_set_tx_power(self, CIRCUITPY_WIFI_DEFAULT_TX_POWER);
91
- }
+ common_hal_wifi_radio_set_tx_power(self, CIRCUITPY_WIFI_DEFAULT_TX_POWER);
92
return;
93
}
94
0 commit comments