-
Notifications
You must be signed in to change notification settings - Fork 7.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Undefined reference to phy_bbpll_en_usb
when using USB CDC and WiFi at the same time on ESP32-S2 (IDFGH-10996)
#12185
Comments
phy_bbpll_en_usb
when using USB CDC and WiFi at the same time on ESP32-S2phy_bbpll_en_usb
when using USB CDC and WiFi at the same time on ESP32-S2 (IDFGH-10996)
I encountered this same issue recently here, #12106 |
|
Hello @Strat00s , The Thus this option will be hidden for ESP32-S2, thanks! |
Does it make sense to alias this to a noop for non-esp32-s3/c3? |
No, it doesn't. |
I have the same error when I enable ESP_PHY_ENABLE_USB in SDK_Config ComponentConfig->Phy->Enable USB when phy init |
…upported targets "Enable USB when phy init" Kconfig option would call esp_phy function `phy_bbpll_en_usb()` that is not implemented for all targets. Selecting this option for unsupported target results in linking error. The necessity of this workaround is now defined soc_caps.h rather than in the Kconfig. Closes #12185
…upported targets "Enable USB when phy init" Kconfig option would call esp_phy function `phy_bbpll_en_usb()` that is not implemented for all targets. Selecting this option for unsupported target results in linking error. The necessity of this workaround is now defined soc_caps.h rather than in the Kconfig. Closes #12185
…upported targets "Enable USB when phy init" Kconfig option would call esp_phy function `phy_bbpll_en_usb()` that is not implemented for all targets. Selecting this option for unsupported target results in linking error. The necessity of this workaround is now defined soc_caps.h rather than in the Kconfig. Closes espressif#12185
Answers checklist.
IDF version.
V4.4.5, V5.1.1, master
Operating System used.
Windows
How did you build your project?
VS Code IDE
If you are using Windows, please specify command line type.
None
What is the expected behavior?
It should compile.
What is the actual behavior?
Looks like S2 is missing
phy_bbpll_en_usb
implementation as all I get isundefined reference to 'phy_bbpll_en_usb'
.Steps to reproduce.
Build or installation Logs.
More Information.
#12106 (comment)
#7404 (comment)
The text was updated successfully, but these errors were encountered: