fix(esp_phy): fix pll track corner case

This commit is contained in:
zwx
2023-10-18 16:36:47 +08:00
parent 3de31924ac
commit b96064a740
4 changed files with 30 additions and 3 deletions

View File

@@ -89,3 +89,8 @@ void esp_phy_disable(esp_phy_modem_t modem)
phy_clr_modem_flag(modem);
_lock_release(&s_phy_access_lock);
}
_lock_t phy_get_lock(void)
{
return s_phy_access_lock;
}