<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://e2echina.ti.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Bluetooth®︎（参考译文帖）(Read Only) - 最近的话题</title><link>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum</link><description /><dc:language>zh-CN</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 02 Apr 2026 12:08:16 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum" /><item><title>[参考译文] CC2642R：使用 CC2642 进行基于 FreeRTOS 的开发中的 BLE 问题</title><link>https://e2echina.ti.com/thread/1082877?ContentTypeID=0</link><pubDate>Thu, 02 Apr 2026 12:08:16 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:88c87d8b-7a19-4d9f-9f64-5ac32db87bc9</guid><dc:creator>admin</dc:creator><slash:comments>1</slash:comments><comments>https://e2echina.ti.com/thread/1082877?ContentTypeID=0</comments><wfw:commentRss>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1082877/cc2642r-cc2642-freertos-ble/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Other Parts Discussed in Thread: &lt;/b&gt;&lt;a href="https://www.ti.com.cn/product/cn/CC2642R" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2642R&lt;/a&gt;, &lt;a href="https://www.ti.com.cn/tool/cn/SYSCONFIG" class="internal-link folder tool" title="Link to Tool Folder" target="_blank"&gt;SYSCONFIG&lt;/a&gt;&lt;/p&gt;&lt;div&gt;请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。&lt;/div&gt;&lt;p&gt;&lt;a href="https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1632885/cc2642r-ble-issues-in-freertos-based-development-with-the-cc2642" target="_blank"&gt;https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1632885/cc2642r-ble-issues-in-freertos-based-development-with-the-cc2642&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;器件型号：&lt;/b&gt; &lt;a href="https://www.ti.com/product/CC2642R" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2642R&lt;/a&gt;&lt;br /&gt;&lt;b&gt;主题：&lt;/b&gt;  &lt;a href="https://www.ti.com/tool/SYSCONFIG" class="internal-link folder tool" title="Link to Tool Folder" target="_blank"&gt;SysConfig 中讨论的其他器件&lt;/a&gt;&lt;/p&gt;&lt;div&gt;TI 技术支持工程师大家好、 &lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;我们使用配置为 BLE 中央器件的 CC2642R 芯片。 将 FreeRTOS 集成到我们的工程后、我们需要以非‑Ω 连接的方式持续获取周围蓝牙设备的 RSSI。 &lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;但是、在程序运行一段时间后、它无法再进入 &lt;strong&gt;SC_EVT_ADV_REPORT &lt;/strong&gt;分支&lt;code&gt;SimpleCentral_processAppMsg&lt;/code&gt;。 最终、它也无法进入&lt;code&gt;SimpleCentral_scanCb&lt;/code&gt;回调。 无法在这两个位置触发调试断点。 其余&lt;code&gt;SimpleCentral_processAppMsg&lt;/code&gt;函数仍正常执行。 &lt;br /&gt;我们当前的 BLE 参数如下： &amp;nbsp;
&lt;pre class="language-markup"&gt;&lt;code&gt;// Default PHY for scanning
#define DEFAULT_SCAN_PHY                        SCAN_PRIM_PHY_1M

//Default Scan type (Active/Passive)
#define DEFAULT_SCAN_TYPE                       SCAN_TYPE_PASSIVE

// Default scan interval (in 625 us ticks)
#define DEFAULT_SCAN_INTERVAL                   320

// Default scan window   (in 625 us ticks)
#define DEFAULT_SCAN_WINDOW                     160

// Default scan duration in 10 ms
#define DEFAULT_SCAN_DURATION                   100

// Advertising report fields to keep in the list
#define ADV_RPT_FIELDS                          (SCAN_ADVRPT_FLD_ADDRESS | SCAN_ADVRPT_FLD_ADDRTYPE)

// Scanner Duplicate Filter
#define SCANNER_DUPLICATE_FILTER                 SCAN_FLT_DUP_DISABLE

// TRUE to filter discovery results on desired service UUID
#define DEFAULT_DEV_DISC_BY_SVC_UUID            false
&lt;/code&gt;&lt;/pre&gt;
&lt;div&gt;此外、我们只&lt;code&gt;GapScan_enable(0, 0, 0);&lt;/code&gt;在&lt;code&gt;GAP_DEVICE_INIT_DONE_EVENT&lt;/code&gt;&lt;code&gt;SimpleCentral_processGapMsg&lt;/code&gt;函数内部情况的末尾调用函数、的值&lt;code&gt;autoConnect&lt;/code&gt;设置为 0。 &lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;您能否帮助分析根本原因或提供一些故障排除指导？ 非常感谢。 &lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;此致、
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
邓俊杰 &lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[参考译文] CC2755R10：TI CC2755R10 上的 Sensory TrulyHandsfree 商业许可和性能数据</title><link>https://e2echina.ti.com/thread/1082718?ContentTypeID=0</link><pubDate>Wed, 01 Apr 2026 10:49:17 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:e51390f8-3f12-417c-ae42-958c9fb6deba</guid><dc:creator>admin</dc:creator><slash:comments>1</slash:comments><comments>https://e2echina.ti.com/thread/1082718?ContentTypeID=0</comments><wfw:commentRss>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1082718/cc2755r10-ti-cc2755r10-sensory-trulyhandsfree/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Other Parts Discussed in Thread: &lt;/b&gt;&lt;a href="https://www.ti.com.cn/product/cn/CC2755R10" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2755R10&lt;/a&gt;&lt;/p&gt;&lt;div&gt;请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。&lt;/div&gt;&lt;p&gt;&lt;a href="https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1632401/cc2755r10-commercial-licensing-and-performance-data-for-sensory-trulyhandsfree-on-ti-cc2755r10" target="_blank"&gt;https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1632401/cc2755r10-commercial-licensing-and-performance-data-for-sensory-trulyhandsfree-on-ti-cc2755r10&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;器件型号：&lt;/b&gt; &lt;a href="https://www.ti.com/product/CC2755R10" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2755R10&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;尊敬的 TI 团队： &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;我们的客户 &lt;/strong&gt;&amp;nbsp;目前正在评估 Texas Instruments &amp;nbsp;&lt;strong&gt;CC2755R10 &lt;/strong&gt;&amp;nbsp;的 MCU &amp;nbsp;&lt;strong&gt;他们 &lt;/strong&gt;&amp;nbsp;即将推出的 Voice AI 项目、和 &amp;nbsp;&lt;strong&gt;它们 &lt;/strong&gt;&amp;nbsp;都非常感兴趣 &amp;nbsp;&lt;strong&gt;Sensory 的 TrulyHandsfree &lt;/strong&gt;&amp;nbsp;用于识别唤醒字和语音命令。 &lt;/p&gt;
&lt;p&gt;AS &amp;nbsp;&lt;strong&gt;它们 &lt;/strong&gt;&amp;nbsp;计划大规模生产路线图、 &amp;nbsp;&lt;strong&gt;客户 &lt;/strong&gt;&amp;nbsp;有一些关于商业许可和技术性能的问题： &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;1、商业许可和定价模式 &lt;/strong&gt;&lt;br /&gt;能否澄清一下 &amp;nbsp;&lt;strong&gt;客户的 &lt;/strong&gt;&amp;nbsp;将 Sensory 的 TrulyHandsfree 与 TI 解决方案一同商业使用需要额外的许可证或版税？ &lt;/p&gt;
&lt;p&gt;如果是、您能否分享许可模式的详细信息（例如，自定义唤醒字词与标准唤醒字词的 NRE 费用以及每单位版税）以及指示性定价？ &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;2.声学性能和插入坚固性 &lt;/strong&gt;&lt;br /&gt;其&amp;nbsp;系统设计包括通过内置扬声器播放 FM 无线电和音乐。 &lt;/p&gt;
&lt;p&gt;在此特定情形中（插入）： &lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;TrulyHandsfree 的唤醒字/命令识别精度和噪声稳定性可以满足他们的期望？ &lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;您是否有有关 SNR 条件、远场距离限制和错误接受率 (FAR) 的测量数据？ &lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;您能否分享任何在 TI CC27xx 平台上验证的相关白皮书、AEC（回声消除）测试报告或参考数据？ &lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;感谢您的时间和帮助。 我们期待收到您的反馈、以帮助&amp;nbsp;客户&amp;nbsp;探索将此语音 AI 解决方案集成到中的可能性 &amp;nbsp;&lt;strong&gt;他们 &lt;/strong&gt;&amp;nbsp;示例。 &lt;/p&gt;
&lt;p&gt;此致、 &lt;/p&gt;
&lt;p&gt;Mike Wu &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[参考译文] CC2642R：CC2642R：基于 CC2642R 平台上的 FreeRTOS 进行 BLE 开发</title><link>https://e2echina.ti.com/thread/1082876?ContentTypeID=0</link><pubDate>Tue, 31 Mar 2026 02:47:13 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:7757c133-497c-4107-86bf-e8ebf9308614</guid><dc:creator>admin</dc:creator><slash:comments>4</slash:comments><comments>https://e2echina.ti.com/thread/1082876?ContentTypeID=0</comments><wfw:commentRss>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1082876/cc2642r-cc2642r-cc2642r-freertos-ble/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Other Parts Discussed in Thread: &lt;/b&gt;&lt;a href="https://www.ti.com.cn/product/cn/CC2642R" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2642R&lt;/a&gt;&lt;/p&gt;&lt;div&gt;请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。&lt;/div&gt;&lt;p&gt;&lt;a href="https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1631689/cc2642r-cc2642r-ble-development-based-on-freertos-on-the-cc2642r-platform" target="_blank"&gt;https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1631689/cc2642r-cc2642r-ble-development-based-on-freertos-on-the-cc2642r-platform&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;器件型号：&lt;/b&gt; &lt;a href="https://www.ti.com/product/CC2642R" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2642R&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;尊敬的 TI 工程师： &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;希望这封电子邮件对您有帮助。 &lt;/p&gt;
&lt;p&gt;我们在&amp;nbsp;&lt;code&gt;simple_central&lt;/code&gt;&amp;nbsp;示例中以核心角色使用 CC2642R 器件。 我们注意到、当我们在&amp;nbsp;&lt;code&gt;SimpleCentral_scanCb&lt;/code&gt;函数中注释掉以下行时： &lt;/p&gt;
&lt;div&gt;
&lt;pre&gt;if (SimpleCentral_enqueueMsg (event、success、pMsg)！= success) &lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;程序的内存使用量显著减少。 您能否帮助我们了解这种情况的原因、或者提供一些有关如何解决此问题的指导？ &lt;/p&gt;
&lt;p&gt;非常感谢您的时间和支持。 &lt;/p&gt;
&lt;p&gt;此致、 &lt;br /&gt;【登君杰】 &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[参考译文] CC2674R10：CC2674R106T0RGZR：1.8V 时的外部稳压器模式、某些现场器件显示通过 RSTSRC_VDDS_LOSS 频繁复位</title><link>https://e2echina.ti.com/thread/1081971?ContentTypeID=0</link><pubDate>Thu, 26 Mar 2026 15:14:00 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:14effc76-c148-43e3-ad6c-22db8d4ebd78</guid><dc:creator>admin</dc:creator><slash:comments>4</slash:comments><comments>https://e2echina.ti.com/thread/1081971?ContentTypeID=0</comments><wfw:commentRss>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1081971/cc2674r10-cc2674r106t0rgzr-1-8v-rstsrc_vdds_loss/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Other Parts Discussed in Thread: &lt;/b&gt;&lt;a href="https://www.ti.com.cn/product/cn/CC2674R10" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2674R10&lt;/a&gt;&lt;/p&gt;&lt;div&gt;请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。&lt;/div&gt;&lt;p&gt;&lt;a href="https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1630530/cc2674r10-cc2674r106t0rgzr-external-regulator-mode-at-1-8v-some-field-devices-show-frequent-resets-via-rstsrc_vdds_loss" target="_blank"&gt;https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1630530/cc2674r10-cc2674r106t0rgzr-external-regulator-mode-at-1-8v-some-field-devices-show-frequent-resets-via-rstsrc_vdds_loss&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;器件型号：&lt;/b&gt; &lt;a href="https://www.ti.com/product/CC2674R10" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2674R10&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;我们提供了一款在外部稳压器模式下使用 CC2674R106T0RGZR 且供电电压为 1.8V 的产品。 一些现场器件显示频繁复位。 大小 &lt;strong&gt;SysCtrlResetSourceGet &lt;/strong&gt;然后返回 &lt;strong&gt;RSTSRC_VDDS_LOSS &lt;/strong&gt;。 &lt;/p&gt;
&lt;p&gt;&lt;br /&gt;CC2674R10 实施： &lt;br /&gt;&lt;img src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/538/6646.image.png" alt="image.png" data-temp-id="image.png-227701" /&gt;&lt;/p&gt;
&lt;p&gt;直接在处理器处进行 1.8V 去耦： &lt;br /&gt;&lt;img src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/538/52611.image.png" alt="image.png" data-temp-id="image.png-99302" /&gt;&lt;/p&gt;
&lt;p&gt;上游电源是 TI TPS62841DGRR、由 3.0V~4.2V 锂电池供电。 &lt;br /&gt;&lt;img src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/538/0361.image.png" alt="image.png" width="699" height="239" data-temp-id="image.png-118690" /&gt;&lt;/p&gt;
&lt;p&gt;每当我们尝试检测器件以监测压降时、器件就会停止表现出该行为。 为了进一步说明、只有&lt;em&gt;一些&lt;/em&gt;现场器件显示该值、可能为 10%。 &lt;/p&gt;
&lt;p&gt;Simplelink SDK 版本： &lt;strong&gt;7.10.01.24 &lt;br /&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;参考 SWCU194、在外部稳压器模式下、我们会相信欠压电压为 1.65V。 TPS62842DGRR 似乎不可能使输出降至 1.65V、而 1.8V 上的其他器件可能总共消耗的最大 50mA。 &lt;/p&gt;
&lt;p&gt;感谢提供任何有关调试此问题的建议。 请告诉我其他问题。 &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[参考译文] CC2642R：CC2642 UART2 发送中断域并检测中断事件</title><link>https://e2echina.ti.com/thread/1081693?ContentTypeID=0</link><pubDate>Thu, 26 Mar 2026 07:47:53 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:c9359a4d-affd-4ac8-8696-c4285f013ef6</guid><dc:creator>admin</dc:creator><slash:comments>3</slash:comments><comments>https://e2echina.ti.com/thread/1081693?ContentTypeID=0</comments><wfw:commentRss>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1081693/cc2642r-cc2642-uart2/rss?ContentTypeId=0</wfw:commentRss><description>&lt;div&gt;请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。&lt;/div&gt;&lt;p&gt;&lt;a href="https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1630287/cc2642r-cc2642-uart2-send-break-field-and-detect-break-event" target="_blank"&gt;https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1630287/cc2642r-cc2642-uart2-send-break-field-and-detect-break-event&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;器件型号：&lt;/b&gt; &lt;a href="https://www.ti.com/product/CC2642R" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2642R&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;

&lt;div dir="auto" data-turn-start-message="true" data-message-model-slug="gpt-5-3" data-message-id="f7f4b130-4d3b-4fbd-9989-cfbaee722b2b" data-message-author-role="assistant"&gt;
&lt;p data-end="3" data-start="0"&gt;您好、 &lt;/p&gt;
&lt;p data-end="246" data-start="5"&gt;我们目前正在 CC2642 上使用 UART2 来模拟 LIN 总线。 在此过程中、我们需要检测和传输中断域。 但是、SDK 中的 UART2 驱动程序似乎默认不支持中断检测和生成。 &lt;/p&gt;
&lt;p data-end="287" data-start="248"&gt;我们尝试了以下方法： &lt;/p&gt;
&lt;ul data-end="733" data-start="289"&gt;
&lt;li data-end="527" data-start="289" data-section-id="1wb667a"&gt;使 UART 初始化、降低波特率并重新初始化、然后发送&lt;code data-end="381" data-start="375"&gt;0x00&lt;/code&gt;以模拟中断域、并最终恢复波特率（结果显示中断域和同步域之间出现过多延迟）； &lt;/li&gt;
&lt;li data-end="733" data-start="528" data-section-id="1ej0ks"&gt;持续强制 UART TX 引脚为低电平（如果没有计时器，则很难精确控制中断持续时间；使用计时器会引入额外的 CPU 负载并影响其他任务的执行）； &lt;/li&gt;
&lt;/ul&gt;
&lt;p data-end="840" data-start="735"&gt;这些方法没有取得令人满意的结果。 是否有更好的方法来实现此功能？ &lt;/p&gt;
&lt;p data-is-only-node="" data-is-last-node="" data-end="872" data-start="842"&gt;期待您的答复。 &lt;/p&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[参考译文] CC2652PSIP：当为 cc2652psip 启用 ZigBee 时、ESP 中未接收 BLE 广播</title><link>https://e2echina.ti.com/thread/1081474?ContentTypeID=0</link><pubDate>Wed, 25 Mar 2026 12:39:51 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:86035628-c5d6-4adc-95a0-7a091f9102e6</guid><dc:creator>admin</dc:creator><slash:comments>9</slash:comments><comments>https://e2echina.ti.com/thread/1081474?ContentTypeID=0</comments><wfw:commentRss>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1081474/cc2652psip-cc2652psip-zigbee-esp-ble/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Other Parts Discussed in Thread: &lt;/b&gt;&lt;a href="https://www.ti.com.cn/tool/cn/SYSCONFIG" class="internal-link folder tool" title="Link to Tool Folder" target="_blank"&gt;SYSCONFIG&lt;/a&gt;, &lt;a href="https://www.ti.com.cn/product/cn/CC2652PSIP" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2652PSIP&lt;/a&gt;, &lt;a href="https://www.ti.com.cn/product/cn/CC1352P" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC1352P&lt;/a&gt;, &lt;a href="https://www.ti.com.cn/product/cn/CC2652P" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2652P&lt;/a&gt;&lt;/p&gt;&lt;div&gt;请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。&lt;/div&gt;&lt;p&gt;&lt;a href="https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1629877/cc2652psip-ble-advertising-not-receiving-in-esp-when-zigbee-enabled-for-cc2652psip" target="_blank"&gt;https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1629877/cc2652psip-ble-advertising-not-receiving-in-esp-when-zigbee-enabled-for-cc2652psip&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;器件型号：&lt;/b&gt; &lt;a href="https://www.ti.com/product/CC2652PSIP" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2652PSIP&lt;/a&gt;&lt;br /&gt;&lt;b&gt;主题中讨论的其他器件：&lt;/b&gt; &lt;a href="https://www.ti.com/tool/SYSCONFIG" class="internal-link folder tool" title="Link to Tool Folder" target="_blank"&gt;SYSCONFIG&lt;/a&gt;、 &lt;a href="https://www.ti.com/product/CC1352P" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC1352P&lt;/a&gt;、 &lt;a href="https://www.ti.com/product/CC2652P" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2652P&lt;/a&gt;&lt;/p&gt;&lt;p&gt;我的软件 SDK 为 8.30.01.01 &amp;nbsp;&lt;br /&gt;简单外设项目广播（无任何更改）旧广播和扩展广播都能够由 esp 接收 &amp;nbsp;&lt;br /&gt;但有了 DMM ZR 轻项目 BLE 广播无法通过 esp 接收 &amp;nbsp;&lt;br /&gt;注意：ZR 灯和简单外围项目广告都可以在移动设备中看到 &amp;nbsp;&lt;br /&gt;esp 接收相同的 1352p ZR Light 1 DMM 项目、以及 ESP 接收简单的外设广播。 &lt;br /&gt;我有一个生产项目,其中既 zigbee 和 ble 都是需要的,出于某种原因,我使用 esp 连接在这里连接获取超时,我检查了所有的设置似乎很好,后来测试默认示例找到这个 &amp;nbsp;&lt;/p&gt;
&lt;p&gt;ESP 正在扫描传统和扩展广播 &amp;nbsp;&lt;br /&gt;窗口和间隔为 160 个单位（连续扫描） &lt;br /&gt;&lt;br /&gt;&amp;nbsp;如何进一步调试...或者是否有任何方法可以解决此问题... &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[参考译文] AM62P：支持在 Linux 中启动 HFP 和 RFCOMM SPP</title><link>https://e2echina.ti.com/thread/1081072?ContentTypeID=0</link><pubDate>Wed, 25 Mar 2026 11:12:44 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:298079a6-bb22-4040-87fd-c2062f976a12</guid><dc:creator>admin</dc:creator><slash:comments>2</slash:comments><comments>https://e2echina.ti.com/thread/1081072?ContentTypeID=0</comments><wfw:commentRss>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1081072/am62p-linux-hfp-rfcomm-spp/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Other Parts Discussed in Thread: &lt;/b&gt;&lt;a href="https://www.ti.com.cn/product/cn/CC3351" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC3351&lt;/a&gt;, &lt;a href="https://www.ti.com.cn/product/cn/AM62P" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;AM62P&lt;/a&gt;&lt;/p&gt;&lt;div&gt;请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。&lt;/div&gt;&lt;p&gt;&lt;a href="https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1629841/am62p-support-on-bringing-up-hfp-and-rfcomm-spp-in-linux" target="_blank"&gt;https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1629841/am62p-support-on-bringing-up-hfp-and-rfcomm-spp-in-linux&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;部件号：&lt;/b&gt; &lt;a href="https://www.ti.com/product/AM62P" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;AM62P&lt;/a&gt;&lt;br /&gt;&lt;b&gt;Thread 中讨论的其他器件：&lt;/b&gt; &lt;a href="https://www.ti.com/product/CC3351" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC3351&lt;/a&gt;、 &lt;/p&gt;&lt;p&gt;尊敬的 TI 团队： &lt;br /&gt;&lt;br /&gt;我们尝试在运行 Linux 11.02.08.02 的 TI AM62P 设置中启动 HFP 配置文件和 RFCOMM SPP 通信支持。 &amp;nbsp;我们购买了 CC3351、但遗憾的是、它仅支持 WiFi 和 BLE。 &lt;br /&gt;&lt;br /&gt;现在、我们使用来自 TP Link (UB500) 的 USB 蓝牙软件狗、现在我们能够使用蓝牙在移动设备与 AM62P 之间进行扫描和配对。 以下是我们为实现&amp;nbsp;到目前为止所需行为所做的改变。 &lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;在内核配置中添加了以下条目 &lt;br /&gt;
&lt;pre class="language-markup"&gt;&lt;code&gt;CONFIG_BT=y
CONFIG_BT_BREDR=y
CONFIG_BT_RFCOMM=y
CONFIG_BT_RFCOMM_TTY=y
CONFIG_BT_L2CAP=y
CONFIG_BT_SCO=y
CONFIG_BT_LE=y&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;已验证更改是否反映在目标中 &lt;br /&gt;
&lt;pre class="language-markup"&gt;&lt;code&gt;root@am62pxx-evm:~# zcat /proc/config.gz | grep RFCOM
CONFIG_BT_RFCOMM=y
CONFIG_BT_RFCOMM_TTY=y&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;经验证的 bluetoothctl
&lt;pre class="language-markup"&gt;&lt;code&gt;[bluetooth]# show
Controller 8C:90:2D:CB:AF:63 (public)
        Manufacturer: 0x005d (93)
        Version: 0x0a (10)
        Name: am62pxx-evm
        Alias: am62pxx-evm
        Class: 0x00000000 (0)
        Powered: yes
        Discoverable: no
        DiscoverableTimeout: 0x000000b4 (180)
        Pairable: yes
        UUID: Generic Attribute Profile (00001801-0000-1000-8000-00805f9b34fb)
        UUID: Generic Access Profile    (00001800-0000-1000-8000-00805f9b34fb)
        UUID: PnP Information           (00001200-0000-1000-8000-00805f9b34fb)
        UUID: A/V Remote Control Target (0000110c-0000-1000-8000-00805f9b34fb)
        UUID: A/V Remote Control        (0000110e-0000-1000-8000-00805f9b34fb)
        UUID: Device Information        (0000180a-0000-1000-8000-00805f9b34fb)
        Modalias: usb:v1D6Bp0246d0548
        Discovering: no
        Roles: central
        Roles: peripheral
Advertising Features:
        ActiveInstances: 0x00 (0)
        SupportedInstances: 0x04 (4)
        SupportedIncludes: tx-power
        SupportedIncludes: appearance
        SupportedIncludes: local-name
        SupportedSecondaryChannels: 1M
        SupportedSecondaryChannels: 2M
        SupportedSecondaryChannels: Coded&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;尽管所有这些确认都存在、但当尝试执行 RFCOMM 时、我们会收到以下错误。 &lt;/p&gt;
&lt;pre class="language-markup"&gt;&lt;code&gt;root@am62pxx-evm:~# rfcomm 
Can&amp;#39;t open RFCOMM control socket: Protocol not supported

# Bluetooth is not having RFCOMM entry
root@am62pxx-evm:~# cat /proc/net/protocols | grep bluetooth                                                                                                                                                       
SCO        856      0      -1   NI       0   no   bluetooth   n  n  n  n  n  n  n  n  n  n  n  n  n  n  n  n  n  n
L2CAP      840      0      -1   NI       0   no   bluetooth   n  n  n  n  n  n  n  n  n  n  n  n  n  n  n  n  n  n
HCI        896      0      -1   NI       0   no   bluetooth   n  n  n  n  n  n  n  n  n  n  n  n  n  n  n  n  n  n

# Bluetooth is not having rfcomm entry
root@am62pxx-evm:~# lsmod | grep bluetooth
bluetooth             540672  26 btrtl,btmtk,btintel,btbcm,btusb
ecdh_generic           16384  2 bluetooth
rfkill                 28672  4 bluetooth,cfg80211&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;请建议我们如何在 TI AM62P 中建立 RFCOMM 和 HFP 配置文件？ &lt;br /&gt;&lt;br /&gt;此致、 &lt;br /&gt;Mohammed Shakir &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[参考译文] LSF0102-Q1：LSF0102QDCURQ1 硬件设计支持</title><link>https://e2echina.ti.com/thread/1081075?ContentTypeID=0</link><pubDate>Tue, 24 Mar 2026 11:44:32 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:8483ddf3-9309-4c77-b254-9b6c62e35984</guid><dc:creator>admin</dc:creator><slash:comments>1</slash:comments><comments>https://e2echina.ti.com/thread/1081075?ContentTypeID=0</comments><wfw:commentRss>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1081075/lsf0102-q1-lsf0102qdcurq1/rss?ContentTypeId=0</wfw:commentRss><description>&lt;div&gt;请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。&lt;/div&gt;&lt;p&gt;&lt;a href="https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1629355/lsf0102-q1-lsf0102qdcurq1-hardware-design-support" target="_blank"&gt;https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1629355/lsf0102-q1-lsf0102qdcurq1-hardware-design-support&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;器件型号：&lt;/b&gt; &lt;a href="https://www.ti.com/product/LSF0102-Q1" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;LSF0102-Q1&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;img src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/538/_7B00_FBE30E2A_2D00_2BA2_2D00_4607_2D00_B31E_2D00_CC03CB9709DA_7D00_.png" width="212" height="158" alt=" " /&gt;FIG 1 &lt;/p&gt;
&lt;p&gt;&lt;img src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/538/_7B00_A988F765_2D00_B017_2D00_42B5_2D00_9CED_2D00_4F3159FB52F3_7D00_.png" width="250" height="217" alt=" " /&gt;图 2. &lt;/p&gt;
&lt;p&gt;我正在使用 LSF0102QDCURQ1 该器件、但我对 EN 和 Vref_B 配置感到困惑&amp;nbsp;。您能否通过说明建议哪种配置是正确的图 1/图 2 &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[参考译文] CC2642R：CC2642R：CC2642R Tx 功率是否在 TI 工厂进行了校准？</title><link>https://e2echina.ti.com/thread/1081074?ContentTypeID=0</link><pubDate>Mon, 23 Mar 2026 03:03:05 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:368ab8fb-f326-4813-951f-0afab1e77e3f</guid><dc:creator>admin</dc:creator><slash:comments>4</slash:comments><comments>https://e2echina.ti.com/thread/1081074?ContentTypeID=0</comments><wfw:commentRss>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1081074/cc2642r-cc2642r-cc2642r-tx-ti/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Other Parts Discussed in Thread: &lt;/b&gt;&lt;a href="https://www.ti.com.cn/product/cn/CC2642R" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2642R&lt;/a&gt;, &lt;a href="https://www.ti.com.cn/tool/cn/SYSCONFIG" class="internal-link folder tool" title="Link to Tool Folder" target="_blank"&gt;SYSCONFIG&lt;/a&gt;&lt;/p&gt;&lt;div&gt;请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。&lt;/div&gt;&lt;p&gt;&lt;a href="https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1628651/cc2642r-cc2642r-is-cc2642r-tx-power-calibrated-at-ti-factory" target="_blank"&gt;https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1628651/cc2642r-cc2642r-is-cc2642r-tx-power-calibrated-at-ti-factory&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;器件型号：&lt;/b&gt; &lt;a href="https://www.ti.com/product/CC2642R" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2642R&lt;/a&gt;&lt;br /&gt;&lt;b&gt;主题：&lt;/b&gt;  &lt;a href="https://www.ti.com/tool/SYSCONFIG" class="internal-link folder tool" title="Link to Tool Folder" target="_blank"&gt;SysConfig 中讨论的其他器件&lt;/a&gt;&lt;/p&gt;&lt;p&gt;它可能关心的对象、 &lt;/p&gt;
&lt;p&gt;TI 是否会在 TI 工厂校准 CC2642R 的 Tx 功率？ &lt;br /&gt;如果不是、CC2642R 是否需要在开发人员侧进行 Tx 功率校准？ &lt;br /&gt;就在这种情况下、“校准“是指提高 Tx 功率精度。 &lt;/p&gt;
&lt;p&gt;此致、 &lt;br /&gt;山口 &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[参考译文] CC2745R10-Q1：CC2745 是否支持 EVITA 认证等级？</title><link>https://e2echina.ti.com/thread/1081081?ContentTypeID=0</link><pubDate>Mon, 23 Mar 2026 03:00:32 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:5cea9cc2-b58e-4f5e-9411-b09ffa5e1ded</guid><dc:creator>admin</dc:creator><slash:comments>1</slash:comments><comments>https://e2echina.ti.com/thread/1081081?ContentTypeID=0</comments><wfw:commentRss>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1081081/cc2745r10-q1-cc2745-evita/rss?ContentTypeId=0</wfw:commentRss><description>&lt;div&gt;请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。&lt;/div&gt;&lt;p&gt;&lt;a href="https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1628650/cc2745r10-q1-does-cc2745-support-evita-certification-level" target="_blank"&gt;https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1628650/cc2745r10-q1-does-cc2745-support-evita-certification-level&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;器件型号：&lt;/b&gt; &lt;a href="https://www.ti.com/product/CC2745R10-Q1" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2745R10-Q1&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;您好的团队、 &lt;/p&gt;
&lt;p&gt;标题未在数据表或用户指南中找到。 我们可以看到&lt;span style="text-decoration:underline;"&gt;&lt;em&gt;符合 ISO21434 汽车网络安全标准、但不支持 EVITA。 &lt;/em&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;您是否有一些具体材料来展示 HSM 认证支持或 CC2745 总体认证支持列表？ &amp;nbsp;&lt;/p&gt;
&lt;p&gt;如果正式不支持 EVITA、其他安全认证是否会有同样的效果来展示 CC2745 HSM 的功能？ &lt;/p&gt;
&lt;p&gt;BR。 &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[参考译文] CC2651R3SIPA：在我的项目构建中重新定义闪存、SRAM 和各种符号</title><link>https://e2echina.ti.com/thread/1081080?ContentTypeID=0</link><pubDate>Sun, 22 Mar 2026 13:13:49 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:f503a863-3f90-4ee4-a12e-4a713c354708</guid><dc:creator>admin</dc:creator><slash:comments>1</slash:comments><comments>https://e2echina.ti.com/thread/1081080?ContentTypeID=0</comments><wfw:commentRss>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1081080/cc2651r3sipa-sram/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Other Parts Discussed in Thread: &lt;/b&gt;&lt;a href="https://www.ti.com.cn/product/cn/CC2651R3SIPA" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2651R3SIPA&lt;/a&gt;&lt;/p&gt;&lt;div&gt;请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。&lt;/div&gt;&lt;p&gt;&lt;a href="https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1628599/cc2651r3sipa-flash-memory-sram-and-various-symbols-are-being-redefined-in-my-project-build" target="_blank"&gt;https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1628599/cc2651r3sipa-flash-memory-sram-and-various-symbols-are-being-redefined-in-my-project-build&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;器件型号：&lt;/b&gt; &lt;a href="https://www.ti.com/product/CC2651R3SIPA" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2651R3SIPA&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;在 CCS 的 Project Build 中获取错误#10263 和 10264。 &amp;nbsp;我运行这个项目已经有一年多了,没有任何问题,但在 Git fork Repository 的保存/恢复后,我发现了这些错误。 &lt;/p&gt;
&lt;p&gt;&lt;img src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/538/Screenshot-2026_2D00_03_2D00_22-090534.png" data-temp-id="Screenshot 2026-03-22 090534.png-98729" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;我相信我有多个链接器命令文件。 &amp;nbsp;在当前构建中的何处可以找到链接器命令文件？ &lt;/p&gt;
&lt;p&gt;我的程序是根据 LP CC2651r3spia LaunchPad 上的 Project_Zero 开发的 &lt;/p&gt;
&lt;p&gt;谢谢、 &lt;/p&gt;
&lt;p&gt;Jim &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[参考译文] CC2745R10-Q1：使用 AES 加密功能时、basic_ble 模块蓝牙将断开连接。</title><link>https://e2echina.ti.com/thread/1082251?ContentTypeID=0</link><pubDate>Fri, 20 Mar 2026 11:57:51 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:e097a619-98e7-4145-888a-802228d84e67</guid><dc:creator>admin</dc:creator><slash:comments>7</slash:comments><comments>https://e2echina.ti.com/thread/1082251?ContentTypeID=0</comments><wfw:commentRss>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1082251/cc2745r10-q1-aes-basic_ble/rss?ContentTypeId=0</wfw:commentRss><description>&lt;div&gt;请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。&lt;/div&gt;&lt;p&gt;&lt;a href="https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1628396/cc2745r10-q1-when-using-the-aes-encryption-function-the-basic_ble-module-bluetooth-will-disconnect" target="_blank"&gt;https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1628396/cc2745r10-q1-when-using-the-aes-encryption-function-the-basic_ble-module-bluetooth-will-disconnect&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;器件型号：&lt;/b&gt; &lt;a href="https://www.ti.com/product/CC2745R10-Q1" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2745R10-Q1&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;CC2745 SDK (simplelink_lowpower_f3_SDK_9_14_02_16) 演示合并 basic_ble 和 aesecb 演示例程的功能、预期当蓝牙功能正常工作时、可以执行 AESECB 加密和解密。 将 aesecb 演示功能集成到 basic_ble 演示后、蓝牙功能可以正常连接和运行、但在执行 AES 加密操作时蓝牙连接会断开。 请帮助分析原因和解决方案。 谢谢。加密功能的代码如下 &lt;/p&gt;
&lt;p&gt;&lt;a href="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/538/psa_5F00_aes_5F00_ecb_5F00_encrypt.c" target="_blank" rel="noopener" data-temp-id="psa_aes_ecb_encrypt.c-1751"&gt;PSA_AES_ECB_encrypt.c&lt;/a&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[参考译文] CC2340R5：CC2340 KSV 扇区保护问题</title><link>https://e2echina.ti.com/thread/1081078?ContentTypeID=0</link><pubDate>Fri, 20 Mar 2026 10:40:31 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:c3184c89-4f02-4c50-83bc-e9a2cee63eb1</guid><dc:creator>admin</dc:creator><slash:comments>3</slash:comments><comments>https://e2echina.ti.com/thread/1081078?ContentTypeID=0</comments><wfw:commentRss>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1081078/cc2340r5-cc2340-ksv/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Other Parts Discussed in Thread: &lt;/b&gt;&lt;a href="https://www.ti.com.cn/tool/cn/UNIFLASH" class="internal-link folder tool" title="Link to Tool Folder" target="_blank"&gt;UNIFLASH&lt;/a&gt;&lt;/p&gt;&lt;div&gt;请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。&lt;/div&gt;&lt;p&gt;&lt;a href="https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1628365/cc2340r5-cc2340-nsv-sector-protection-issue" target="_blank"&gt;https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1628365/cc2340r5-cc2340-nsv-sector-protection-issue&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;器件型号：&lt;/b&gt; &lt;a href="https://www.ti.com/product/CC2340R5" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2340R5&lt;/a&gt;&lt;br /&gt;&lt;b&gt;Thread 中讨论的其他器件：&lt;/b&gt; &lt;a href="https://www.ti.com/tool/UNIFLASH" class="internal-link folder tool" title="Link to Tool Folder" target="_blank"&gt;UNIFLASH&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;您好、 &lt;/p&gt;
&lt;p&gt;我希望防止在通过编程器反复刷写固件时擦除 NVS 区域数据。 进行如下所述的更改后、测试正常通过。 但是、我有一个问题：在代码执行期间调用 ERASE API 时、是否仍可以擦除此区域？ 如果擦除失败、会影响 NVS 机制、对吧？ &lt;/p&gt;
&lt;p&gt;&lt;img src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/538/55478.image.png" alt="image.png" data-temp-id="image.png-27482" /&gt;&lt;img src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/538/75678.image.png" alt="image.png" data-temp-id="image.png-31149" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[参考译文] CC2340R5：【技术咨询】可行性检查&amp;amp；面向客户的资源申请&amp;#39；s CC2340R5 项目</title><link>https://e2echina.ti.com/thread/1080456?ContentTypeID=0</link><pubDate>Fri, 20 Mar 2026 09:19:54 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:8a66808d-184d-4085-9994-5644564e0256</guid><dc:creator>admin</dc:creator><slash:comments>1</slash:comments><comments>https://e2echina.ti.com/thread/1080456?ContentTypeID=0</comments><wfw:commentRss>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1080456/cc2340r5-amp-39-s-cc2340r5/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Other Parts Discussed in Thread: &lt;/b&gt;&lt;a href="https://www.ti.com.cn/product/cn/CC2340R5" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2340R5&lt;/a&gt;, &lt;a href="https://www.ti.com.cn/tool/cn/SYSCONFIG" class="internal-link folder tool" title="Link to Tool Folder" target="_blank"&gt;SYSCONFIG&lt;/a&gt;&lt;/p&gt;&lt;div&gt;请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。&lt;/div&gt;&lt;p&gt;&lt;a href="https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1628331/cc2340r5-technical-inquiry-feasibility-check-resource-request-for-customer-s-cc2340r5-project" target="_blank"&gt;https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1628331/cc2340r5-technical-inquiry-feasibility-check-resource-request-for-customer-s-cc2340r5-project&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;器件型号：&lt;/b&gt; &lt;a href="https://www.ti.com/product/CC2340R5" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2340R5&lt;/a&gt;&lt;br /&gt;&lt;b&gt;主题：&lt;/b&gt;  &lt;a href="https://www.ti.com/tool/SYSCONFIG" class="internal-link folder tool" title="Link to Tool Folder" target="_blank"&gt;SysConfig 中讨论的其他器件&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;尊敬的 TI 技术支持团队： &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;希望这封电子邮件对您有帮助。 &lt;/p&gt;
&lt;p&gt;目前、我们的一个主要客户正在评估 &amp;nbsp;&lt;strong&gt;TI CC2340R5 &lt;/strong&gt;用于即将&amp;nbsp;开展的项目的 BLE SoC。 &lt;/p&gt;
&lt;p&gt;在研发团队进行初步评估后、他们整合了蓝牙应用的技术要求列表。 &lt;/p&gt;
&lt;p&gt;为了帮助加快他们的硬件选择和项目进度、 &lt;strong&gt;您能否帮助确认 CC2340R5（和相应的 SDK）是否完全支持下面列出的功能？ &lt;/strong&gt;&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;1、强制性功能要求 &lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;广播控制： &lt;/strong&gt;&amp;nbsp;支持自定义广播数据、动态启用/禁用广播、动态修改广播间隔以及修改/存储设备名称。 &lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;BLE 配置文件/服务： &lt;/strong&gt;&amp;nbsp;支持自定义配置文件/服务和 UUID、可灵活配置特征属性（例如，读取，写入，通知）。 &lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;标准服务支持： &lt;/strong&gt;&amp;nbsp;必须包括 GAP、GATT、DIS 和 &amp;nbsp;&lt;strong&gt;ANCs &lt;/strong&gt;&amp;nbsp;（Apple 通知中心服务）。 &lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;连接和安全机制： &lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;支持密钥配对和后续绑定。 &lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;绑定管理可存储多达 8 台设备、并在列表已满时使用 FIFO（或 LRU）替换机制。 &lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;支持过滤器接受列表（白名单）。 &lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;连接后动态调整连接参数、MTU 大小和数据长度扩展 (DLE)。 &lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;能够读取已连接电话的“设备名称“和“MAC 地址“。 &lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;接口和刷写： &lt;/strong&gt;支持通过主机 MCU 通过 UART 接口 (UART 引导加载程序/SBL) 进行固件更新和刷写。 --&amp;gt;这个项目我们知道 CC2340 supple Serial boot loader。 &lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;2.可选功能/待确认 &lt;/h3&gt;
&lt;p&gt;除了强制性要求外、客户还想知道是否支持以下高级功能、以及是否有任何可用的参考实现： &lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;OTA 固件更新（无线下载）--&amp;gt; &lt;/strong&gt;我们知道此项 TI 支持 OAD。 &lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;AMS（Apple 媒体服务） &lt;/strong&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;自动重新连接机制 &lt;/strong&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;如果要求的任何功能需要特定的开源存储库（例如 TI GitHub 沙盒）或特殊配置（例如 SysConfig）来实施、请告知我们。 &lt;/p&gt;
&lt;p&gt;您的专家建议对于帮助我们的客户规划其软件和固件架构非常有价值。 提前感谢您的大力支持！ &lt;/p&gt;
&lt;p&gt;此致、 &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[参考译文] CC2340R5：CC2340R5 是否支持蓝牙 6？</title><link>https://e2echina.ti.com/thread/1080457?ContentTypeID=0</link><pubDate>Fri, 20 Mar 2026 04:21:44 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:bceb3e2a-f853-40f9-822c-a62de4be0419</guid><dc:creator>admin</dc:creator><slash:comments>2</slash:comments><comments>https://e2echina.ti.com/thread/1080457?ContentTypeID=0</comments><wfw:commentRss>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1080457/cc2340r5-cc2340r5-6/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Other Parts Discussed in Thread: &lt;/b&gt;&lt;a href="https://www.ti.com.cn/product/cn/CC2340R5" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2340R5&lt;/a&gt;&lt;/p&gt;&lt;div&gt;请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。&lt;/div&gt;&lt;p&gt;&lt;a href="https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1628246/cc2340r5-does-the-cc2340r5-support-bluetooth-6" target="_blank"&gt;https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1628246/cc2340r5-does-the-cc2340r5-support-bluetooth-6&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;器件型号：&lt;/b&gt; &lt;a href="https://www.ti.com/product/CC2340R5" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2340R5&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;尊敬的 TI 专家： &lt;/p&gt;
&lt;p&gt;TI CC2340R5 是否支持蓝牙 6？ &lt;/p&gt;
&lt;p&gt;如果我们需要使用蓝牙 6、我们是否应该选择 CC2755？ &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[参考译文] CC2642R-Q1：当最大特性数量= 0 时、引脚或密钥缺失</title><link>https://e2echina.ti.com/thread/1082252?ContentTypeID=0</link><pubDate>Thu, 19 Mar 2026 06:40:30 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:d0fbb163-b501-4ff3-bc44-4eeeb3a57803</guid><dc:creator>admin</dc:creator><slash:comments>6</slash:comments><comments>https://e2echina.ti.com/thread/1082252?ContentTypeID=0</comments><wfw:commentRss>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1082252/cc2642r-q1-0/rss?ContentTypeId=0</wfw:commentRss><description>&lt;div&gt;请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。&lt;/div&gt;&lt;p&gt;&lt;a href="https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1627898/cc2642r-q1-pin-or-key-missing-when-maximum-number-of-characteristic-0" target="_blank"&gt;https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1627898/cc2642r-q1-pin-or-key-missing-when-maximum-number-of-characteristic-0&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;器件型号：&lt;/b&gt; &lt;a href="https://www.ti.com/product/CC2642R-Q1" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2642R-Q1&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;SDK：simplelink_cc13xx_cc26xx_sdk_7_41_00_17 &lt;/p&gt;
&lt;p&gt;项目：simple_peripheral &lt;/p&gt;
&lt;p&gt;我的客户在其应用程序中使用的配置为最大数量的特征= 0、但他们最近发现无法使用此配置完成加密。 绑定后、下一个连接将终止、因为 CC2642 向中央器件发送 LLCP 拒绝扩展指示。 &lt;/p&gt;
&lt;p&gt;&lt;img src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/538/0211.image.png" alt="image.png" data-temp-id="image.png-56783" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/538/70811.image.png" alt="image.png" data-temp-id="image.png-164100" /&gt;&lt;/p&gt;
&lt;p&gt;我知道 CCC 在绑定器件的连接中应该是持久的、但对于这种特定情况、客户需要对协议栈中的逻辑进行一些详细说明。 &lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;如果最大特性数量设置为 0 且启用了绑定、则该栈如何处理 CCC 以及在收到加密请求时为什么发送引脚或密钥丢失？ &lt;/li&gt;
&lt;li&gt;如果特征参数的最大数量大于 0、我们观察到 SimplePeripheral_processCharValueChangeEvt 在连接后被调用、是由堆栈启动吗？ 它是否会影响从中央器件发出的启用或禁用通知的后续写入请求？ &lt;/li&gt;
&lt;li&gt;是否有办法在不接收来自中央器件的写入请求的情况下手动处理来自外设的 CCC 值？ &lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;此致、 &lt;/p&gt;
&lt;p&gt;Shuyang Zhong &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[参考译文] CC2340R5-Q1：关于 UART 功能的事件回调功能</title><link>https://e2echina.ti.com/thread/1081970?ContentTypeID=0</link><pubDate>Thu, 19 Mar 2026 06:30:52 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:b4aadc80-b977-4471-a529-48f8c445e524</guid><dc:creator>admin</dc:creator><slash:comments>4</slash:comments><comments>https://e2echina.ti.com/thread/1081970?ContentTypeID=0</comments><wfw:commentRss>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1081970/cc2340r5-q1-uart/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Other Parts Discussed in Thread: &lt;/b&gt;&lt;a href="https://www.ti.com.cn/product/cn/CC2340R5-Q1" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2340R5-Q1&lt;/a&gt;&lt;/p&gt;&lt;div&gt;请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。&lt;/div&gt;&lt;p&gt;&lt;a href="https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1627894/cc2340r5-q1-about-event-callback-function-for-uart-function" target="_blank"&gt;https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1627894/cc2340r5-q1-about-event-callback-function-for-uart-function&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;器件型号：&lt;/b&gt; &lt;a href="https://www.ti.com/product/CC2340R5-Q1" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2340R5-Q1&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;您好： &lt;/p&gt;
&lt;p&gt;我将使用 CC2340R5-Q1 并使用 SDK 版本 9.14 开发软件。 目前、我正在为客户开发一款产品并实现/验证 UART 功能。 作为异常条件检查的一部分、我特意输入格式错误的数据并想决定当 CC2340R5-Q1 检测到错误时软件应如何响应。 为此、我正在调查 CC2340R5-Q1 如何检测 UART 错误。 我观察到以下行为： &lt;/p&gt;
&lt;ul style="list-style-type:disc;"&gt;
&lt;li&gt;当接收到没有 STOP 位的 UART 数据时、不会调用事件回调函数。 而是调用读取回调函数。 &lt;/li&gt;
&lt;li&gt;在读取回调函数中、状态报告为正常/正常。 &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;我的问题是： &lt;/p&gt;
&lt;ol style="list-style-type:decimal;"&gt;
&lt;li&gt;如果接收到格式错误的数据（在本例中为没有 STOP 位的数据）、是否应该调用事件回调函数？ &lt;/li&gt;
&lt;li&gt;如何在软件中将此情况检测为错误？ &lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre class="language-c"&gt;&lt;code&gt;void Isr_Uart_Rx(UART2_Handle handle, void *buf, size_t count, void *userArg, int_fast16_t status)
{

    GPIO_toggle(CONFIG_GPIO_DIO13);
    uart_status = status;
    UART2_read(uart2_handle, &amp;amp;uart2_buf[0], (size_t)5, NULL);
}

void Isr_Uart_Event(UART2_Handle handle, uint32_t event, uint32_t data, void *userArg)
{

    GPIO_toggle(CONFIG_GPIO_DIO0);
    uart_event = event;
    uart_event_data = data;
}


void Uart_Setup(void) 
{
    UART2_Params uart2_params;

    UART2_Params_init(&amp;amp;uart2_params);
    uart2_params.readMode = UART2_Mode_CALLBACK;
    uart2_params.readCallback = Isr_Uart_Rx;
    uart2_params.readReturnMode = UART2_ReadReturnMode_PARTIAL;
    uart2_params.eventCallback = Isr_Uart_Event;
    uart2_params.eventMask = UART2_EVENT_FRAMING | UART2_EVENT_PARITY | UART2_EVENT_BREAK | UART2_EVENT_OVERRUN;
    uart2_params.baudRate = 500000;
    uart2_handle = UART2_open(CONFIG_UART2_0, &amp;amp;uart2_params);
    UART2_read(uart2_handle, &amp;amp;uart2_buf[0], (size_t)5, NULL);
}&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/538/3323.Fig1.png" alt="Fig1.png" width="539" height="312" data-temp-id="Fig1.png-430543" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;我会附上我检查过的代码和示波器波形以供参考。谢谢您的帮助。 &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[参考译文] CC2755P10：具有响应支持的定期广播</title><link>https://e2echina.ti.com/thread/1081475?ContentTypeID=0</link><pubDate>Wed, 18 Mar 2026 19:10:57 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:f456776b-6d65-4b16-8cdd-de00bc87cc4f</guid><dc:creator>admin</dc:creator><slash:comments>4</slash:comments><comments>https://e2echina.ti.com/thread/1081475?ContentTypeID=0</comments><wfw:commentRss>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1081475/cc2755p10/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Other Parts Discussed in Thread: &lt;/b&gt;&lt;a href="https://www.ti.com.cn/product/cn/CC2652P7" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2652P7&lt;/a&gt;, &lt;a href="https://www.ti.com.cn/product/cn/CC2755P10" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2755P10&lt;/a&gt;&lt;/p&gt;&lt;div&gt;请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。&lt;/div&gt;&lt;p&gt;&lt;a href="https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1627743/cc2755p10-periodic-advertisement-with-responses-support" target="_blank"&gt;https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1627743/cc2755p10-periodic-advertisement-with-responses-support&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;器件型号：&lt;/b&gt; &lt;a href="https://www.ti.com/product/CC2755P10" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2755P10&lt;/a&gt;&lt;br /&gt;&lt;b&gt;主题中讨论的其他器件：&lt;/b&gt; &lt;a href="https://www.ti.com/product/CC2652P7" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2652P7&lt;/a&gt;、 &lt;/p&gt;&lt;p&gt;您好、 &amp;nbsp;&lt;/p&gt;
&lt;p&gt;我想知道低功耗 F3 SDK 是否支持带响应的定期广播？ &lt;/p&gt;
&lt;p&gt;在文件“C：\ti\simplelink_lowpower_f3_SDK_9_14_02_16\docs\rCL\source\handlers\ble_handlers\periodic_scan_handler.md“中、我看到了 &lt;/p&gt;
&lt;p&gt;“蓝牙核心规范 5.4 中引入了带响应的定期广播 (PAwR)、以在结构化时间范围内实现广播器与多个扫描器之间的双向通信。 与标准定期广播不同、PAwR 允许设备在预定义的响应时隙内发送响应、从而在保持低功耗的同时实现高效通信。“ &lt;br /&gt;&lt;br /&gt;如果支持、能否提供 CC2755P10 的示例？ 如果是、我何时可以预期在 SDK 中实现此功能。 CC2652P7 是否支持它？ 您有 CC2652P7 示例吗？ &amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[FAQ] [参考译文] 【常见问题解答】CC2674P10：CC2674/CC13x4 器件上的安全功能</title><link>https://e2echina.ti.com/thread/1080072?ContentTypeID=0</link><pubDate>Wed, 18 Mar 2026 12:18:32 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:cd839b7b-d16b-4ce2-a63e-9dda9aa72ef0</guid><dc:creator>admin</dc:creator><slash:comments>1</slash:comments><comments>https://e2echina.ti.com/thread/1080072?ContentTypeID=0</comments><wfw:commentRss>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1080072/faq-cc2674p10-cc2674-cc13x4/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Other Parts Discussed in Thread: &lt;/b&gt;&lt;a href="https://www.ti.com.cn/product/cn/CC1314R10" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC1314R10&lt;/a&gt;, &lt;a href="https://www.ti.com.cn/product/cn/CC1354R10" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC1354R10&lt;/a&gt;, &lt;a href="https://www.ti.com.cn/product/cn/CC2674P10" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2674P10&lt;/a&gt;, &lt;a href="https://www.ti.com.cn/product/cn/CC2674R10" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2674R10&lt;/a&gt;, &lt;a href="https://www.ti.com.cn/product/cn/CC1354P10" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC1354P10&lt;/a&gt;, &lt;a href="https://www.ti.com.cn/product/cn/CC2755R10" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2755R10&lt;/a&gt;, &lt;a href="https://www.ti.com.cn/product/cn/CC2755P10" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2755P10&lt;/a&gt;&lt;/p&gt;&lt;div&gt;请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。&lt;/div&gt;&lt;p&gt;&lt;a href="https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1627584/faq-cc2674p10-security-features-on-cc2674-cc13x4-devices" target="_blank"&gt;https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1627584/faq-cc2674p10-security-features-on-cc2674-cc13x4-devices&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;器件型号：&lt;/b&gt; &lt;a href="https://www.ti.com/product/CC2674P10" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2674P10&lt;/a&gt;&lt;br /&gt;&lt;b&gt;Thread 中讨论的其他器件：&lt;/b&gt;  &lt;a href="https://www.ti.com/product/CC2674R10" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2674R10&lt;/a&gt;&lt;a href="https://www.ti.com/product/CC1314R10" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;&lt;/a&gt;、CC1314R10、 &lt;a href="https://www.ti.com/product/CC1354P10" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC1354P10&lt;/a&gt;&lt;a href="https://www.ti.com/product/CC1354R10" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;&lt;/a&gt;、CC1354R10、 &lt;a href="https://www.ti.com/product/CC2755R10" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2755R10&lt;/a&gt;、 &lt;a href="https://www.ti.com/product/CC2755P10" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2755P10&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Q1：CC2674 和 CC13x4 器件上提供了哪些安全功能？ &lt;/p&gt;
&lt;p&gt;&amp;nbsp;A：F2 平台上的 CC2674 和 CC13x4 (CC2674R10、CC2674P10、CC1314R10、CC1354R10、CC1354P10) 器件 &lt;br /&gt;&amp;nbsp;提供以下安全功能： &lt;/p&gt;
&lt;p&gt;&amp;nbsp;-调试端口锁定 — 防止未经授权的调试访问 &lt;br /&gt;&amp;nbsp;- TrustZone 隔离 — 密钥可以存储在受 TrustZone 保护的安全存储器区域中 &lt;br /&gt;&amp;nbsp;-基于软件的安全启动 — MCUboot 可以验证固件映像的真实性和完整性 &lt;br /&gt;&amp;nbsp;-加密加速 — 硬件加速的 AES、SHA 和 ECC 操作 &lt;/p&gt;
&lt;p&gt;&amp;nbsp;但是、这些器件不包含硬件安全模块 (HSM) 或硬件信任根 (RoT)。 安全性 &lt;br /&gt;&amp;nbsp;机制主要是由软件实现的。 &lt;/p&gt;
&lt;p&gt;&amp;nbsp;问题 2：CC2674 和 CC13x4 是否支持 TrustZone？ &lt;/p&gt;
&lt;p&gt;&amp;nbsp;答：是的、CC2674 和 CC13x4 支持中的 TrustZone &lt;br /&gt;&amp;nbsp;以下配置： &lt;/p&gt;
&lt;p&gt;&amp;nbsp;- TI Trusted Firmware-M (TF-M) 与 SimpleLink 加密驱动程序和相关示例 &lt;br /&gt;&amp;nbsp;-采用 TrustZone 分区的 TI 15.4-Stack（低于 1GHz） &lt;br /&gt;&amp;nbsp;-用于安全映像升级的 MCUBoot &lt;/p&gt;
&lt;p&gt;&amp;nbsp;限制：CC2674 和 CC13x4 不支持将 TrustZone 与低功耗蓝牙栈结合使用。 低功耗蓝牙 &lt;br /&gt;&amp;nbsp;&amp;nbsp;F2 平台上的栈不能在 TrustZone 分区环境中运行、TI 也不能 &lt;br /&gt;&amp;nbsp;提供此配置的示例项目或文档。 &lt;/p&gt;
&lt;p&gt;&amp;nbsp;对于需要具有基于硬件的安全隔离的低功耗蓝牙的应用、我们推荐 CC27xx 系列 &lt;br /&gt;&amp;nbsp;（例如 CC2755P10/CC2755R10）。 &lt;/p&gt;
&lt;p&gt;&amp;nbsp;问题 3：对于需要安全密钥存储的低功耗蓝牙应用、我应该选择哪款器件？ &lt;/p&gt;
&lt;p&gt;&amp;nbsp;答：对于具有安全密钥存储要求的低功耗蓝牙应用、建议使用 CC27xx 系列。 &lt;/p&gt;
&lt;p&gt;&amp;nbsp;CC27xx 器件提供： &lt;br /&gt;&amp;nbsp;-用于安全密钥存储的硬件安全模块 (HSM) &lt;br /&gt;&amp;nbsp;-硬件信任根,带出厂编程的唯一设备标识 &lt;br /&gt;&amp;nbsp;-带防回滚保护的安全启动 &lt;br /&gt;&amp;nbsp;- DPA 对策和篡改检测 &lt;/p&gt;
&lt;p&gt;&amp;nbsp;这些特性对于旨在符合如所示安全法规的应用尤其重要 &lt;br /&gt;&amp;nbsp;红色 EN 18031（有效 2025年8月1日） 或）或即将出台的《网络复原力法案》(CRA)。 &lt;/p&gt;
&lt;p&gt;谢谢、 &lt;/p&gt;
&lt;p&gt;Marie H &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[参考译文] CC2640R2F：CC2640 外设+观察器角色断开问题</title><link>https://e2echina.ti.com/thread/1080071?ContentTypeID=0</link><pubDate>Tue, 17 Mar 2026 15:34:11 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:91301ac5-5eca-4f75-afc0-bb8b3af05f29</guid><dc:creator>admin</dc:creator><slash:comments>3</slash:comments><comments>https://e2echina.ti.com/thread/1080071?ContentTypeID=0</comments><wfw:commentRss>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1080071/cc2640r2f-cc2640/rss?ContentTypeId=0</wfw:commentRss><description>&lt;div&gt;请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。&lt;/div&gt;&lt;p&gt;&lt;a href="https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1627225/cc2640r2f-cc2640-peripheral-observer-role-disconnection-issue" target="_blank"&gt;https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1627225/cc2640r2f-cc2640-peripheral-observer-role-disconnection-issue&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;器件型号：&lt;/b&gt; &lt;a href="https://www.ti.com/product/CC2640R2F" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2640R2F&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;我们目前正在使用 Texas Instruments BLE 平台、在同一器件上实现外设和观测器角色。 &lt;/p&gt;
&lt;p&gt;当仅在外设角色（连接到移动应用）下运行时、系统将按预期运行并具有稳定的连接。 &lt;/p&gt;
&lt;p&gt;但是、当同时启用观测器角色时、我们可以观察到与移动应用的 BLE 连接会在大约 30 分钟到 1 小时后断开。 &lt;br /&gt;GAP 外设配置： &lt;br /&gt;define default_advertising_interval &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;160&amp;nbsp;// 100 ms &lt;/p&gt;
&lt;p&gt;#define DEFAULT_DISCOVERY_MODE &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;GAP_ADTYPE_FLAGS_General &lt;/p&gt;
&lt;p&gt;#define DEFAULT_DIARED_MIN_CONN_INTERVAL&amp;nbsp;&amp;nbsp;8&amp;nbsp;&amp;nbsp;// 10ms &lt;br /&gt;#define DEFAULT_DIARED_MAX_CONN_INTERVAL&amp;nbsp;&amp;nbsp;16&amp;nbsp;&amp;nbsp;// 20ms &lt;br /&gt;#define DEFAULT_DESIGNED_SLAVE_LATENCY &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;5. &lt;br /&gt;#define DEFAULT_DIARED_CONN_TIMEOUT &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;600&amp;nbsp;// 6 秒 &lt;br /&gt;扫描参数（观察者角色）： &lt;br /&gt;#define DEFAULT_SCAN_DURATION &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2000 &lt;br /&gt;#define DEFAULT_SCAN_WIND &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3200 &lt;br /&gt;#define DEFAULT_SCAN_INT &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3200 &lt;br /&gt;TPMS 传感器行为： &lt;/p&gt;
&lt;p&gt;以 1 秒的间隔广播（3 个数据包） &lt;/p&gt;
&lt;p&gt;然后是 180 秒空闲周期 &lt;/p&gt;
&lt;p&gt;然后重复该循环 &lt;/p&gt;
&lt;p&gt;基于此行为、移动连接和 TPMS 数据接收应保持稳定。 &lt;/p&gt;
&lt;p&gt;其他详细信息： &lt;/p&gt;
&lt;p&gt;SDK 版本：4.30.0.8 &lt;/p&gt;
&lt;p&gt;白名单功能已启用 &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[参考译文] CC2340R5：测试软件工具问题：Tx 无法维持输出和放大器；跳频模式下无响应</title><link>https://e2echina.ti.com/thread/1081079?ContentTypeID=0</link><pubDate>Tue, 17 Mar 2026 15:21:13 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:eed110b8-a76e-4898-b600-9d6b1843f17b</guid><dc:creator>admin</dc:creator><slash:comments>5</slash:comments><comments>https://e2echina.ti.com/thread/1081079?ContentTypeID=0</comments><wfw:commentRss>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1081079/cc2340r5-tx/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Other Parts Discussed in Thread: &lt;/b&gt;&lt;a href="https://www.ti.com.cn/product/cn/CC2340R5" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2340R5&lt;/a&gt;&lt;/p&gt;&lt;div&gt;请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。&lt;/div&gt;&lt;p&gt;&lt;a href="https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1627221/cc2340r5-issues-with-test-sw-tools-tx-cannot-sustain-output-no-response-in-hopping-mode" target="_blank"&gt;https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1627221/cc2340r5-issues-with-test-sw-tools-tx-cannot-sustain-output-no-response-in-hopping-mode&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;器件型号：&lt;/b&gt; &lt;a href="https://www.ti.com/product/CC2340R5" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2340R5&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;您好团队： &lt;/p&gt;
&lt;p&gt;我的客户在使用时遇到两个问题 &amp;nbsp;&lt;strong&gt;测试软件工具 &lt;/strong&gt;&amp;nbsp;进行验证。 &lt;/p&gt;
&lt;p&gt;请帮助调查—谢谢。 &lt;/p&gt;
&lt;div align="center"&gt;&lt;hr align="center" /&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;问题 1：1M/2M 上的发送器仅持续~1 秒、无法保持连续输出 &lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;症状： &lt;/strong&gt;TX 在大约 1 秒后停止、并且不能维持连续传输（请参阅随附的视频）。 &lt;/li&gt;
&lt;li&gt;&lt;strong&gt;使用的 API 调用： &lt;/strong&gt;我们期望通过仅调用以下 API 来实现连续 Tx：
&lt;p&gt;函数：hciStatus_t&amp;nbsp;STATUS =&amp;nbsp;HCI_LE_EnhancedTxTestCmd (0、0x25、HCI_DIRECT_TEST_PAYLOAD_PRBS9、&amp;nbsp;HCI_PHY_2_Mbps)； &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p style="font-family:Aptos, sans-serif;font-size:12pt;margin-bottom:0cm;margin-right:0cm;margin-top:0cm;"&gt;您能否提供可确保持续 Tx 的参考片段或示例序列？ &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;问题 2：跳频模式显示没有 TX 开启、也没有跳频活动 &lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;症状： &lt;/strong&gt;执行后、没有可观察到的 TX 开启或通道跳频行为；没有事件或可测量的输出。 &lt;/li&gt;
&lt;li&gt;&lt;strong&gt;使用的 API 调用： &lt;/strong&gt;
&lt;p&gt;extern hciStatus_t HCI_EXT_ModemHopTestTxCmd ( void ); &lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;请分享跳频模式的正确启用流程和示例（包括启动/停止条件）。 &lt;/p&gt;
&lt;p&gt;提前感谢您的帮助和指导。 &lt;/p&gt;
&lt;p&gt;如果您需要我们进行额外的试用或在现场收集更多数据、请告知我们、我们将立即提供支持。 &lt;/p&gt;
&lt;p&gt;此致、 &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[参考译文] CC2755R10：支持 Matter over Thread 和信道探测</title><link>https://e2echina.ti.com/thread/1079754?ContentTypeID=0</link><pubDate>Mon, 16 Mar 2026 03:42:53 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:9cdc9059-5b3e-4400-be4c-f3d99998c061</guid><dc:creator>admin</dc:creator><slash:comments>3</slash:comments><comments>https://e2echina.ti.com/thread/1079754?ContentTypeID=0</comments><wfw:commentRss>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1079754/cc2755r10-matter-over-thread/rss?ContentTypeId=0</wfw:commentRss><description>&lt;div&gt;请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。&lt;/div&gt;&lt;p&gt;&lt;a href="https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1626329/cc2755r10-matter-over-thread-and-channel-sounding-support" target="_blank"&gt;https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1626329/cc2755r10-matter-over-thread-and-channel-sounding-support&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;器件型号：&lt;/b&gt; &lt;a href="https://www.ti.com/product/CC2755R10" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2755R10&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;您好、TI &lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.ti.com/video/6387496513112?keyMatch=smart%20e-lock&amp;amp;tisearch=universal_search"&gt;www.ti.com/.../6387496513112&lt;/a&gt;&lt;br /&gt;我在官方网站上看到、2755 已经通过 Thread 和信道探测支持 Matter、 &amp;nbsp;&lt;br /&gt;1.我可以询问它是否集成到一组代码中? 它是哪个示例代码？ &lt;br /&gt;2.如果它们是两组独立的代码、则分别是哪个示例代码？ 是否有计划在将来合并它们？ &lt;/p&gt;
&lt;p&gt;此致 &lt;br /&gt;普雷斯顿 &lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;div&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[参考译文] CC2340R5：CC2340R5 是否支持 AES-GCM？</title><link>https://e2echina.ti.com/thread/1079765?ContentTypeID=0</link><pubDate>Sun, 15 Mar 2026 08:27:02 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:dc295095-0afb-4d83-800d-ef5f3158ebe2</guid><dc:creator>admin</dc:creator><slash:comments>1</slash:comments><comments>https://e2echina.ti.com/thread/1079765?ContentTypeID=0</comments><wfw:commentRss>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1079765/cc2340r5-cc2340r5-aes-gcm/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Other Parts Discussed in Thread: &lt;/b&gt;&lt;a href="https://www.ti.com.cn/product/cn/CC2340R5" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2340R5&lt;/a&gt;&lt;/p&gt;&lt;div&gt;请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。&lt;/div&gt;&lt;p&gt;&lt;a href="https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1626241/cc2340r5-does-cc2340r5-support-aes-gcm" target="_blank"&gt;https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1626241/cc2340r5-does-cc2340r5-support-aes-gcm&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;器件型号：&lt;/b&gt; &lt;a href="https://www.ti.com/product/CC2340R5" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2340R5&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;您好、 &lt;/p&gt;
&lt;p&gt;我正在使用最新的 SDK、但在 syscfg 配置接口中没有看到任何与 AES-GCM 相关的组件驱动程序。 &lt;/p&gt;
&lt;p&gt;如果支持 AES-GCM、请告诉我如何使用它。 期待您的答复。 &lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;span data-slate-node="text"&gt;我还有一个与加密相关的问题。 &lt;/span&gt;&lt;span data-slate-node="text"&gt;&lt;span class="" data-slate-leaf="true" data-sent-id="BZWDZMXWDe" data-para-id="1"&gt;&amp;nbsp;CC2340R5 是否支持 HKDF？ &lt;/span&gt;&lt;/span&gt;&lt;span data-slate-node="text"&gt;&amp;nbsp;它是&amp;nbsp;&lt;/span&gt;&lt;span data-slate-node="text"&gt;&lt;/span&gt;&lt;span data-slate-node="text"&gt;&amp;nbsp;&lt;/span&gt;&lt;span data-slate-node="text"&gt;基于&lt;/span&gt;&lt;span data-slate-node="text"&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span data-slate-node="text"&gt; HMAC 的密钥推导函数&lt;/span&gt;&lt;span data-slate-node="text"&gt;。 &lt;/span&gt;&lt;span data-slate-node="text"&gt;&lt;span class="" data-slate-leaf="true" data-sent-id="BDobApvoKz" data-para-id="1"&gt;&amp;nbsp;再说一次,我没有在任何文件中找到任何关于 HKDF 的信息。 &lt;/span&gt;&lt;/span&gt;&lt;span data-slate-node="text"&gt;&amp;nbsp;如果它确实支持、请告诉我如何继续 &lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[参考译文] CC2340R5：CC2340R5 作为 SPI 外设（从模式）</title><link>https://e2echina.ti.com/thread/1080288?ContentTypeID=0</link><pubDate>Fri, 13 Mar 2026 18:04:52 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:dac6d518-4e31-4531-b7a8-a37278a70fa5</guid><dc:creator>admin</dc:creator><slash:comments>3</slash:comments><comments>https://e2echina.ti.com/thread/1080288?ContentTypeID=0</comments><wfw:commentRss>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1080288/cc2340r5-cc2340r5-spi/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Other Parts Discussed in Thread: &lt;/b&gt;&lt;a href="https://www.ti.com.cn/product/cn/CC2340R5" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2340R5&lt;/a&gt;&lt;/p&gt;&lt;div&gt;请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。&lt;/div&gt;&lt;p&gt;&lt;a href="https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1626147/cc2340r5-cc2340r5-as-spi-peripheral-slave-mode" target="_blank"&gt;https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1626147/cc2340r5-cc2340r5-as-spi-peripheral-slave-mode&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;器件型号：&lt;/b&gt; &lt;a href="https://www.ti.com/product/CC2340R5" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2340R5&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;我浏览过该论坛、发现一些交易所似乎表明 CC2340R5 可以作为 CPI 从器件运行。 &amp;nbsp;然而,根据 Copilot 这是不可能的。 &lt;/p&gt;
&lt;p&gt;请确认是否可以这样做。 &lt;/p&gt;
&lt;p&gt;我们将与 STM32N6 处理器通信,并希望它通过控制器（主机）。 &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[参考译文] CC2642R：关于使用 CC26X2R1 系列实现 AoA</title><link>https://e2echina.ti.com/thread/1081077?ContentTypeID=0</link><pubDate>Fri, 13 Mar 2026 06:45:20 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:49793a41-67b8-4ae6-ba70-68ce01aa4365</guid><dc:creator>admin</dc:creator><slash:comments>3</slash:comments><comments>https://e2echina.ti.com/thread/1081077?ContentTypeID=0</comments><wfw:commentRss>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1081077/cc2642r-cc26x2r1-aoa/rss?ContentTypeId=0</wfw:commentRss><description>&lt;div&gt;请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。&lt;/div&gt;&lt;p&gt;&lt;a href="https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1625862/cc2642r-about-using-cc26x2r1-series-for-aoa" target="_blank"&gt;https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1625862/cc2642r-about-using-cc26x2r1-series-for-aoa&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;器件型号：&lt;/b&gt; &lt;a href="https://www.ti.com/product/CC2642R" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;CC2642R&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;您好导出： &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;我的客户正在考虑使用 CC26X2R1 系列来实现 AoA。 &lt;/p&gt;
&lt;p&gt;然后、他们对 AoA 的 CC26X2R1 系列有一些问题、如下所示； &lt;/p&gt;
&lt;p&gt;/// &lt;/p&gt;
&lt;p&gt;*是否可以使用 CC26X2R1 +天线阵列配置接收由 nRF52811 发送的 CTE 并获取多个天线的 I/Q 数据? &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;是否有任何其他合适的 IC？ &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;* BOOSTXL-AOA 似乎已停产。 是否可以通过将类似的 I/Q 数据与其他天线阵列（例如由 CoreHW 制造的天线阵列）相结合来获取该数据？ &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;*我们也在研究 BLE 6.0 中引入的信道探测 (RTT/PBR)。 &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;BLE 5.1&lt;span style="font-family:&amp;#39;Cambria Math&amp;#39;, serif;"&gt;​​&lt;/span&gt; AoA I/Q 分析方法是否最适合此应用（检测微小的相位变化）？ &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;还是我们应该考虑使用 BLE 6.0？ &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;*如果您有任何关于使用 BLE 5.1&lt;span style="font-family:&amp;#39;Cambria Math&amp;#39;, serif;"&gt;​​&lt;/span&gt; AoA（到达角）获取多个天线 I/Q 数据的方法的技术文档,请告诉我们。 &lt;/p&gt;
&lt;p&gt;/// &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;有人请你告诉我, &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;此致、 &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Y M &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>