Skip to content

Commit

Permalink
fix(ble): fixed ble occasional rx exception issue
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaoweiliang2021 authored and luomanruo committed Nov 21, 2023
1 parent e785f45 commit 8f44bee
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions components/esp_phy/src/phy_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,11 @@ void esp_phy_load_cal_and_init(void)
// Set PHY whether in combo module
// For comode mode, phy enable will be not in WiFi RX state
#if SOC_PHY_COMBO_MODULE
#if CONFIG_IDF_TARGET_ESP32C2
phy_init_param_set(1);
#else
phy_init_param_set(0);
#endif
#endif

esp_phy_calibration_data_t* cal_data =
Expand Down

0 comments on commit 8f44bee

Please sign in to comment.