You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are using a Infineon (Cypress) LBEE5KL1DX module that is based on the CYW4343W chipset that is based itself on a BCM4343W from Broadcom.
So it's chip.manufacturer is BT_COMPID_CYPRESS / 0x0131 not the BT_COMPID_BROADCOM / 0x000F one.
In sco.c, in sco_setup_connection_dispatcher() function the test to configure the SCO routing is only done with BT_COMPID_BROADCOM.
if (a->chip.manufacturer == BT_COMPID_BROADCOM) {
In our case we have a Broadcom chip, but it's manufacturer ID is BT_COMPID_CYPRESS but we still want to run the specific configuration.
I don't know whether to add the cypress ID in addition to the broadcom one ?
The text was updated successfully, but these errors were encountered:
- if (a->chip.manufacturer == BT_COMPID_BROADCOM) {+ if (a->chip.manufacturer == BT_COMPID_BROADCOM ||+ a->chip.manufacturer == BT_COMPID_CYPRESS) {
But it's not in master because I'm not sure whether it will not "break" some other cypress BT chips. If you are sure that cypress does not manufactures BT chips on its own (Broadcom was acquired by Cypress some time ago) maybe we could add that change to master.
We are using a Infineon (Cypress) LBEE5KL1DX module that is based on the CYW4343W chipset that is based itself on a BCM4343W from Broadcom.
So it's chip.manufacturer is BT_COMPID_CYPRESS / 0x0131 not the BT_COMPID_BROADCOM / 0x000F one.
In sco.c, in sco_setup_connection_dispatcher() function the test to configure the SCO routing is only done with BT_COMPID_BROADCOM.
if (a->chip.manufacturer == BT_COMPID_BROADCOM) {
In our case we have a Broadcom chip, but it's manufacturer ID is BT_COMPID_CYPRESS but we still want to run the specific configuration.
I don't know whether to add the cypress ID in addition to the broadcom one ?
The text was updated successfully, but these errors were encountered: