-
Notifications
You must be signed in to change notification settings - Fork 7.3k
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
controller_vhci_ble_adv example on ESP32-C6 linking errors (IDFGH-11010) #12194
Comments
Thanks for your question.This example doesn't currently support ESP32C6. Please check the README.md(esp-idf/examples/bluetooth/hci/controller_vhci_ble_adv/README.md) file under this example. |
@zhaoweiliang2021 thank you, what I need is the vhci functions to bind that with the Bluetkitchen btstack as we are not using Espressif Bluetooth stacks. Previously we use the vhci functions for this, but they are not availible in the C6. How would you suggest doing this? Should I modify the esp-idf and hook in on those functions and instead of doing it on UART, I'd map those to external stack?
|
You can refer to the adaptation work of BLUEDROID HOST in bt.c(components/bt/controller/esp32c6/bt.c). |
@zhaoweiliang2021 thanks, I'll use that as reference. You may close this issue now. |
General issue report
Hi, I'm trying to compile and run the controller_vhci_ble_adv example on ESP32-C6 but I get linking errors.
I checked in the bt.c and I'm trying to understand why those functions are wrapped in
#ifdef CONFIG_BT_BLUEDROID_ENABLED
?I tested removing those
#ifdef CONFIG_BT_BLUEDROID_ENABLED
(as in thebt.c
for other ESP32 chip) but then I get linking errors for below.Is there a reason that this does not wortk? If not any pointers to why this is not working?
Tested with both esp-idf 5.1 and current head of master (62ee413)
The text was updated successfully, but these errors were encountered: