mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 18:57:19 +02:00
esp_phy: fix esp32c3/s3 phy USB & RSSI issue
This commit is contained in:
@ -104,4 +104,12 @@ menu "PHY"
|
|||||||
help
|
help
|
||||||
When brownout reset occurs, reduce PHY TX power to keep the code running.
|
When brownout reset occurs, reduce PHY TX power to keep the code running.
|
||||||
|
|
||||||
|
config ESP_PHY_ENABLE_USB
|
||||||
|
bool "Enable USB when phy init"
|
||||||
|
depends on ESP_CONSOLE_USB_SERIAL_JTAG
|
||||||
|
default y
|
||||||
|
help
|
||||||
|
When using USB Serial/JTAG controller, PHY should enable USB, otherwise log will
|
||||||
|
not be displayed. But working with USB, the RF performance may be affected.
|
||||||
|
|
||||||
endmenu # PHY
|
endmenu # PHY
|
||||||
|
@ -85,6 +85,13 @@ uint8_t phy_dig_reg_backup(bool backup_en, uint32_t *mem_addr);
|
|||||||
void phy_freq_mem_backup(bool backup_en, uint32_t *mem);
|
void phy_freq_mem_backup(bool backup_en, uint32_t *mem);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if CONFIG_ESP_PHY_ENABLE_USB
|
||||||
|
/**
|
||||||
|
* @brief Enable or disable USB when phy init.
|
||||||
|
*/
|
||||||
|
void phy_bbpll_en_usb(bool en);
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Submodule components/esp_phy/lib updated: 74658eb4fe...7586abbf59
@ -651,6 +651,10 @@ void esp_phy_load_cal_and_init(void)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if CONFIG_ESP_PHY_ENABLE_USB
|
||||||
|
phy_bbpll_en_usb(true);
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE
|
#ifdef CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE
|
||||||
esp_phy_calibration_mode_t calibration_mode = PHY_RF_CAL_PARTIAL;
|
esp_phy_calibration_mode_t calibration_mode = PHY_RF_CAL_PARTIAL;
|
||||||
uint8_t sta_mac[6];
|
uint8_t sta_mac[6];
|
||||||
|
Reference in New Issue
Block a user