news 2026/9/15 6:50:59

蓝牙Host BQB dongle对比介绍

作者头像

张小明

前端开发工程师

1.2k 24
文章封面图
蓝牙Host BQB dongle对比介绍

目前做蓝牙Host的BQB Dongle有如下类型,分别有不同的类型

BR/EDR/LE - up to Core Spec v4.2 supported

LE Only - up to Core Spec v5.4 supported (Laird Connectivity, part number 451-00004)

Intel M88A37 Bluetooth v5.4 wireless module (BR/EDR/LE)

Intel M88A25 Bluetooth v5.4 wireless module (BR/EDR/LE)

NEW LE Only - up to Core Spec v6.0 supported Nordic NRF54L15-DK

高通

Nordic

Intel

Intel

Nordic

This PTS dongle supportsLE/BR/EDRtest cases up toCore Spec v4.2only

This PTS dongle supportsonly LEtest cases up toCore Spec v5.4

This PTS dongle supportsLE/BR/EDRtest cases up toCore Spec v5.4

This PTS dongle supportsLE/BR/EDRtest cases up toCore Spec v5.4

This PTS dongle supportsLE ONLYtest cases up toCore Spec v6.0

  • Supports the majority of PTS test cases except for the ones that require Bluetooth Core Spec v5.0 or newer features such as Extended Advertising or Isochronous Channels
  • Supported by PTS Version 8.0.0 and higher
  • Cannot be used for testing BR/EDR test cases
  • Supported by PTS Version 8.11.1 and higher
  • Supports the majority of PTS test cases including the ones that require Bluetooth Core Spec v5.0 or newer features such as Extended Advertising or Isochronous Channels
  • Designated as End-of-Life by Intel, with no further support, features, or updates
  • Supported by PTS Version 8.6.0 and higher
  • Supports the majority of PTS test cases including the ones that require Bluetooth Core Spec v5.0 or newer features such as Extended Advertising or Isochronous Channels
  • Supported by PTS Version 8.9.0 and higher
  • Supports the majority of PTS test cases including the ones that require Bluetooth Core Spec v6.0 or newer features such as Channel Sounding
  • Cannot be used for testing BR/EDR test cases

Purchase BR/EDR/LE dongle here

.

LE Only dongle can be purchased from authorized distributors.

Arrow Electronics

Digi-Key Electronics

Note: These are just two possible distributors, the dongle can be purchased from other authorized distributors.

Intel is transitioning from its previous module distributor (MFactors) to a new one.Distribution of the M88A37 will be paused until the transition is completed. A new link to purchase the M88A37 module will be provided as the transition is finalized.

Purchase is not available anymore

NRF54L15-DK can be purchased from authorized distributors.

Buy Nordic Semiconductor products online - nordicsemi.com

版权声明: 本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!
网站建设 2026/9/5 16:24:51

大数据时代:数据标注的5大核心技术解析

大数据时代:数据标注的5大核心技术解析 摘要/引言 在大数据时代,海量的数据如同未经雕琢的璞玉,蕴含着巨大的价值,但要将其转化为能为机器学习、人工智能所用的“智慧”,数据标注起着至关重要的作用。想象一下&#xf…

作者头像 李华
网站建设 2026/9/14 0:52:22

MySQL 实战入门:从“增删改查”到“高效查询”的核心指南

MySQL 实战入门:从“增删改查”到“高效查询”的核心指南在数据驱动的时代,MySQL 作为全球最流行的开源关系型数据库,是每一位后端开发者、数据分析师乃至全栈工程师的必修课。无论你的架构多么宏大,微服务多么复杂,最…

作者头像 李华
网站建设 2026/9/7 11:37:25

OWL 简介

OWL 简介 概述 OWL(Web Ontology Language)是一种用于构建语义网的通用语言。它旨在提供一种机制,使得不同领域、不同应用中的概念、术语和关系可以以一种标准化的方式表示和交换。OWL 的出现是为了解决传统的标记语言在处理复杂信息表示和推理时所遇到的限制。 OWL 的历…

作者头像 李华
网站建设 2026/9/5 21:47:50

ionic 列表:全面解析与实战指南

ionic 列表:全面解析与实战指南 引言 随着移动应用的普及,开发高效的移动应用变得越来越重要。其中,Ionic框架因其强大的功能和易用性,成为了开发者们喜爱的选择之一。本文将为您详细介绍Ionic框架中的列表组件,包括其基本用法、高级特性以及实战案例,帮助您更好地掌握…

作者头像 李华
网站建设 2026/9/4 1:51:46

python生成静音音频

import numpy as np import wavedef generate_silence_wav(path, duration5, sample_rate16000):num_samples int(duration * sample_rate)# int16 静音silence np.zeros(num_samples, dtypenp.int16)with wave.open(path, w) as wf:wf.setnchannels(1) # 单声道wf.se…

作者头像 李华