首页 > 其他分享 >蓝牙|软件 QCC51xx系列开发之LE AUDIO Auracast使用指导

蓝牙|软件 QCC51xx系列开发之LE AUDIO Auracast使用指导

时间:2024-05-24 09:58:39浏览次数:18  
标签:00 LE set QCC51xx test earbud key device AUDIO

本文适用范围:

    ADK23.3~

file=app1

#############
# USER KEYS #
#############
# These keys are used to configure the software or to save settings.
# See the corresponding adk\src\domains\common\ps_key_map.h


#USR1 - This key is reserved. It is used to save the last volume for HFP.
#       See hfp_profile.

# USR2 Setting for earbud to have a fixed role. 
# If this key is not set then the earbud will be able to switch roles (recommended)
# If fixed roles are to be used each earbud pair must have one primary and one secondary. 
# This setting is currently only supported on ROM based QCC512x parts.
#USR2 = [ 01 00 ] #Uncomment to set the earbud to always be a primary device
#USR2 = [ 02 00 ] #Uncomment to set the earbud to always be a secondary device
#USR2 = [ 03 00 ] #Uncomment to set the earbud to use a fixed role. Right earbud will be primary.

# USR3 Setting to enable device testing.
#
# The key controls access to several test modes, including the device test service.
#
# If this key is not set, or is zero, then the device will behave as normal.
# In all other cases, test support will be enabled on boot. The device may
# not support normal operation.
#
# Setting [ 01 00 ] enables the device test service, which uses the SPP interface.
# Setting [ 02 00 ] enables a test mode. LE connections are supported.
# Setting [ 03 00 ] enables RF testing. The device enables RF DUT mode.
#USR3 = [ 01 00 ] # Uncomment to enable device test mode

#USR4 = This key is reserved to store reboot action. 
#       See system_reboot.c

#USR7 - This key is reserved. It is used to save the status for device upgrade
#       See upgrade.h

#USR13 - This key stores delta gain (in fixed-point format Q6.9)

标签:00,LE,set,QCC51xx,test,earbud,key,device,AUDIO
From: https://blog.csdn.net/Alex_886/article/details/139165098

相关文章

  • Oracle创建索引普通索引,唯一索引,复合索引,添加主键
    Oracle创建索引普通索引,唯一索引,复合索引,添加主键创建索引//创建普通索引CREATEINDEX索引名ON表名(列名);//复合索引创建CREATEINDEX索引名ON表名(列名1,列名2,列名3,...);//创建唯一索引CREATEUNIQUEINDEX索引名ON表名(列名);//创建唯一索引CREAT......
  • flex弹性布局及应用
    <!--flex的弹性布局--><template> <divclass="box">  <divclass="box1">1</div>  <divclass="box1">2</div>  <divclass="box1">3</div>  <divclass=&qu......
  • git之fatal: unable to access ‘https://11.2.7.8:68/mjgn/mj.git/‘: SSL certifica
    MENU前言方法一方法二方法三方法四结束语前言出现这个错误是因为Git在访问仓库时遇到了SSL证书问题,具体是证书的密钥太弱,不符合安全要求。方法一升级或更换SSL证书联系服务器管理员,确保服务器上使用的是强密钥SSL证书。推荐使用至少2048位的密钥。方法二......
  • mapper,service,controller,entity之间的关系
    目录一、学到了二、错误与纠正一、学到了1.mapper(repository):数据访问层,负责与数据库进行交互,执行数据库的操作。定义了各种数据库操作方法的接口,并由ORM框架自动实现主要职能是执行数据库的增删改查,并将数据库操作结果返回给上层的service。2.service:业务逻辑层,处理逻......
  • [USACO06DEC] Wormholes G(spfa判断环)
    [USACO06DEC]WormholesG题目背景英文题面见此链接题目描述John在他的农场中闲逛时发现了许多虫洞。虫洞可以看作一条十分奇特的有向边,并可以使你返回到过去的一个时刻(相对你进入虫洞之前)。John的每个农场有m......
  • Python-Turtle.一箭穿心
            一箭穿心图是一种简单的图形,通常由一个箭头穿过一个心形组成。在Python中,可以使用turtle库来绘制这样的图形。首先,导入turtle库,然后使用turtle库的函数来绘制箭头和心形,最后将箭头和心形组合在一起即可实现一箭穿心图画。        以下是一个简单的Pyt......
  • Dockerfile和Docker-Compose作用和用途
    Dockerfile和DockerCompose是用于构建和管理Docker容器的两种不同工具,它们有着不同的作用和用途:Dockerfile:定义镜像:Dockerfile是用于构建Docker镜像的文本文件,其中包含了一系列指令,每条指令表示一层修改。镜像定制:通过编写Dockerfile,你可以定制自己的镜像,包括基于官......
  • jmeter警告:WARN StatusConsoleListener The use of package scanning to locate plugi
    运行jmeter,出现警告信息 警告信息:WARNStatusConsoleListenerTheuseofpackagescanningtolocatepluginsisdeprecatedandwillberemovedinafuturerelease意思是,JMeter在将来的版本中将移除使用包扫描来定位插件的功能 如果想不显示警告信息,可以修改JMeter......
  • 【Java学习】第19节:时间类(Date、Calendar、SimpleDateFormat)、包装类
    目录第一章Date类1.1Date概述1.2Date常用方法第二章SimpleDateFormat类2.1构造方法2.2格式规则2.3常用方法2.4练习1(初恋女友的出生日期)2.5练习2(秒杀活动)第三章Calendar类3.1概述3.2常用方法3.3get方法示例3.4set方法示例:3.5add方法示例:第......
  • Makefile使用教程1
    规则(Rules):一个Makefile文件由一条一条的规则构成,一条规则结构如下target…(目标):prerequisites…(依赖)recipe(方法)……最简单的Makefilehello:hello.cppg++hello.cpp-ohello#开头必须为一个Tab,不能为空格但通常需要将......