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:12 -07:00 committed by GitHub
parent f464ec3047
commit 98692150ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -142,7 +142,7 @@ void common_hal_wifi_radio_set_mac_address(wifi_radio_obj_t *self, const uint8_t
mp_float_t common_hal_wifi_radio_get_tx_power(wifi_radio_obj_t *self) {
int8_t tx_power;
esp_wifi_get_max_tx_power(&tx_power);
return tx_power / 4.0;
return tx_power / 4.0f;
}
void common_hal_wifi_radio_set_tx_power(wifi_radio_obj_t *self, const float tx_power) {