Re: Execute vendor-specific commands to initialize BT Controller
Hi Nazar,
Adding such a feature to the Bluetooth stack sounds like a good idea, but I suspect we need to discuss a bit whether it should be a host extension using a __weak function, an extension to the HCI driver API or something else. Could you open a new enhancement request on github, providing initially the same information as in your email, and we’ll then continue the discussion there: https://github.com/zephyrproject-rtos/zephyr/issues/new/choose
Thanks!
Johan
From:
devel@... <devel@...> on behalf of Nazar.Palamar@... <Nazar.Palamar@...> Hello Devel team, My name is Nazar. I am working for Infineon in the SW integration team. Currently, I am working on the integration of our CYW43xxx connectivity device into Zephyr (PSoC 6 family).
{ return 0; }
{ struct net_buf *rsp; int err;
/* Execute vendor-specific commands to initialize the controller */ err = bt_hci_vendor_init_sequence(); if (err) { return err; } ... } My integration part will implement bt_hci_transport_setup and bt_hci_vendor_init_sequence functions. |
|