Update ports/espressif/common-hal/wifi/Radio.c

Co-authored-by: Dan Halbert <halbert@halwitz.org>
This commit is contained in:
Tod Kurt 2022-07-09 22:17:26 -07:00 committed by GitHub
parent 22e061ba35
commit a658007673
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -146,7 +146,7 @@ mp_float_t common_hal_wifi_radio_get_tx_power(wifi_radio_obj_t *self) {
}
void common_hal_wifi_radio_set_tx_power(wifi_radio_obj_t *self, const mp_float_t tx_power) {
esp_wifi_set_max_tx_power(tx_power * 4.0);
esp_wifi_set_max_tx_power(tx_power * 4.0f);
}
mp_obj_t common_hal_wifi_radio_get_mac_address_ap(wifi_radio_obj_t *self) {