Hello 小钧 唐,
Thank you for your question and for reaching out with your question today.
It seems that you are encountering an issue with the Bluetooth SCO (Synchronous Connection-Oriented) remote connection in Windows 11 with Bluetooth 5.3. The code you provided suggests that you are attempting to establish a SCO connection using the provided BRB (Bluetooth Request Block) parameters.
However, regardless of the values you set for brb->PacketType
and brb->ContentFormat
, the returned status is always 0xC00000BB
(STATUS_NOT_SUPPORTED). This indicates that the requested operation is not supported by the Bluetooth stack.
You mentioned that you have obtained the SCO system information using BRB_SCO_GET_SYSTEM_INFO, and the results indicate that SCO is supported (Features = 3
and PacketTypes = 3F
). This makes the behavior unexpected.
To troubleshoot the issue, you could consider the following steps:
- Verify Bluetooth hardware and driver support: Ensure that your Bluetooth hardware and drivers fully support Bluetooth 5.3 and SCO connections. Check for any updated drivers or firmware for your Bluetooth device.
- Review Windows 11 compatibility: Confirm that your Bluetooth device and its associated drivers are officially compatible with Windows 11. Compatibility issues may arise if the drivers are not specifically designed for the Windows 11 environment.
- Check for Windows updates: Ensure that you have installed the latest Windows updates, including any optional updates or driver updates specifically related to Bluetooth functionality. Microsoft may release updates to address known issues or improve Bluetooth compatibility.
- Test on a different system: If possible, try running your code on a different system with similar Bluetooth hardware and Windows 11 to see if the issue persists. This can help determine if the problem is specific to your system or more widespread.
- Contact Bluetooth hardware or software vendor support: If the issue persists, consider reaching out to the manufacturer or vendor of your Bluetooth hardware or software for further assistance. They may be able to provide specific guidance or troubleshooting steps based on their product's implementation.
It's worth noting that Bluetooth implementation details can vary across different hardware and software configurations, so the specific cause of the issue may require deeper investigation and involvement from the Bluetooth device manufacturer or Microsoft support.
I used AI provided by ChatGPT to formulate part of this response. I have verified that the information is accurate before sharing it with you.
If the reply was helpful, please don’t forget to upvote or accept as answer.