<?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/"><channel><title>Bluetooth®︎（参考译文帖）</title><link>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/</link><description /><dc:language>zh-CN</dc:language><generator>Telligent Community 13</generator><item><title>论坛文章:RE: [参考译文] CC2745R10-Q1：信道探测功能未返回值</title><link>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1095479/cc2745r10-q1/3943016</link><pubDate>Sat, 20 Jun 2026 06:42:00 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:368fff60-dda1-4e61-818b-40c3b8993f08</guid><dc:creator>admin</dc:creator><description>请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。 您好 Evan、 根据上述时钟设置和禁用低功耗模式、信道探测正常工作文件。 对于关键方面、我是 3V 纽扣电池 CR2450、奇怪的是、只要电池电压降至 2.9V 以下、信道探测距离测量就会卡住。 还有一件事是,运动传感器 AIS2DW 集成在 SPI 上。 DIO11、12、15、16 用作 MOSI、MISO、SCLK 和 CS。 DIO18_A7 配置为来自运动传感器的中断。 我们测量了睡眠模式期间的电流消耗、消耗的电流为~2.5mA。 如何进一步减少这种情况？ 截至目前、运动传感器消耗的电流为~200uA。 我正在努力进一步减少这种情况。 在 BLE 方面、如何进一步降低该损耗呢？ 此致、 Prafulla S.</description><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/machine_5F00_translation">machine_translation</category></item><item><title>论坛文章:RE: [参考译文] CC2340R5：高驱动 IO 配置</title><link>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1095401/cc2340r5-io/3942743</link><pubDate>Fri, 19 Jun 2026 18:19:00 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:6613015a-04d1-421a-b4e3-f3fda0035f98</guid><dc:creator>admin</dc:creator><description>请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。 您好： 具有与 SysConfig 相关定义的实际文件为 GPIOLPF3.h、位于以下位置： #define GPIO_CFG_DRVSTR_LOW_INTERNAL ( IOC_CONFIG_DRIVE_strength_2mA ) #define GPIO_CFG_DRVSTR_MED_INTERNAL ( IOC_CONFIG_DRIVE_strength_4mA ) #define GPIO_CFG_DRVSTR_HIGH_INTERNAL (IOC_CONFIG_DRIVE_STR_8mA ) SysConfig 会将其提取： 将 SysConfig GPIO 设置为中等强度会将 ti_drivers_config.c GPIO 设置为 GPIO_CFG_OUT_STR_MED 然后将其抽象到 #define GPIO_CFG_OUT_STR_LOW GPIO_CFG_DRVSTR_LOW_INTERNAL 然后、您可以在 ioc.h 文件中找到以下内容： //！ \hidealizer 手动模式、8mA 驱动强度 #define IOC_CONFIG_DRIVE_strength_8mA ( IOC_IOC12_IOCURR_CUR_8mA ) //！ \hidealizer 手动模式、4mA 驱动强度 #define IOC_CONFIG_DRIVE_strength_4mA (IOC_IOC12_IOCURR_CUR_4mA ) //！ \hidealizer 手动模式、2mA 驱动强度 #define IOC_CONFIG_DRIVE_strength_2mA ( IOC_IOC12_IOCURR_CUR_2mA ) //此设备不支持自动模式 #undef IOC_CONFIG_DRIVE_strength_Auto 上面显示了我们的四种模式（包括自动模式）、这意味着这应该是 IOSTR、它也会设置电流 (IOCURR)、因此是的、SysConfig 确实设置了驱动强度。 您可能还可以使用直接设置寄存器： //***************************************************************************** // // API Functions and prototypes // //***************************************************************************** //***************************************************************************** // //! \brief Set the configuration and mux option for a specific DIO. //! //! \param dioNumber specifies the DIO to configure (0-25). //! //! \param config The configuration to apply. This is a bitwise OR of //! - One of the \ref ioc_config_drive_strength_options //! &amp;quot;IOC Config drive strength options&amp;quot; //! - One of the \ref ioc_config_slew_rate_options //! &amp;quot;IOC Config slew rate options&amp;quot; //! - One of the \ref ioc_config_pull_control_options //! &amp;quot;IOC Config pull control options&amp;quot; //! - One of the \ref ioc_config_edge_detection_options //! &amp;quot;IOC Config edge detection options&amp;quot; //! - One of the \ref ioc_config_standby_wakeup_options //! &amp;quot;IOC Config standby wakeup options&amp;quot; //! - One of the \ref ioc_config_shutdown_wakeup_options //! &amp;quot;IOC Config shutdown wakeup options&amp;quot; //! - One of the \ref ioc_config_io_invert_options //! &amp;quot;IOC Config IO invert options&amp;quot; //! - One of the \ref ioc_config_io_mode_options &amp;quot;IOC Config IO mode options&amp;quot; //! - One of the \ref ioc_config_input_buffer_options //! &amp;quot;IOC Config input buffer options&amp;quot; //! - And one of the \ref ioc_config_hysteresis_options //! &amp;quot;IOC Config hysteresis options&amp;quot; //! //! \param mux Selects the function of the DIO. It must be one of the following: //! - \ref IOC_MUX_GPIO //! - \ref IOC_MUX_DTB //! - \ref IOC_MUX_ANALOG //! - \ref IOC_MUX_PERIPH_FUNC1 //! - \ref IOC_MUX_PERIPH_FUNC2 //! - \ref IOC_MUX_PERIPH_FUNC3 //! - \ref IOC_MUX_PERIPH_FUNC4 //! - \ref IOC_MUX_PERIPH_FUNC5 // //***************************************************************************** __STATIC_INLINE void IOCSetConfigAndMux(uint32_t dioNumber, uint32_t config, uint32_t mux) { // Check the arguments. ASSERT(dioNumberLegal(dioNumber)); ASSERT((config &amp;amp; IOC_CONFIG_ALL_M) == config); ASSERT((mux &amp;amp; IOC_IOC0_PORTCFG_M) == mux); // Set the config and mux option for the specified DIO. HWREG(IOC_BASE + IOC_O_IOC0 + dioNumber * IOC_REG_SPACING) = config | mux; } 此致、 Alex F</description><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/machine_5F00_translation">machine_translation</category></item><item><title>论坛文章:RE: [参考译文] CC2340R5：高驱动 IO 配置</title><link>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1095401/cc2340r5-io/3942742</link><pubDate>Fri, 19 Jun 2026 17:52:00 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:e807ae46-4e84-4936-a8fa-5ac016fe73dd</guid><dc:creator>admin</dc:creator><description>请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。 此外、我刚刚在列表中进一步意识到还有另一个压摆控制领域、因此我认为 SysConfig 工具从未接触过驱动强度、只有驱动电流。 因此、问题实际上就是两个位字段 IOSTR 和 IOCURR 之间的区别是什么 Munan</description><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/machine_5F00_translation">machine_translation</category></item><item><title>论坛文章:RE: [参考译文] CC2340R5：高驱动 IO 配置</title><link>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1095401/cc2340r5-io/3942741</link><pubDate>Fri, 19 Jun 2026 14:48:00 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:d7230d7e-e311-4c3f-8c77-dbd0d7246285</guid><dc:creator>admin</dc:creator><description>请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。 您好 Alex、 是的、这可以 使用 SysConfig 来配置具有驱动强度的引脚、但同样重要的是要实际写出针对此功能的建议设置、因为并非每个客户都在使用 SysConfig、然后每位查看本文的用户都需要进入 SysConfig 并配置 GPIO 以查看其内容。 值得注意的是、SysConfig 似乎将 IOSTR 保留为默认值“auto“、除非您让它降低压摆率： 如果您查看此功能的 TRM 说明、也会看到： 实际上并不清楚哪个最终控制引脚的拉电流或灌电流能力。 SysConfig 似乎意味着 IOSTR 仅控制压摆率、但 TRM 似乎意味着、要在任何电源电压情况下实际从高驱动引脚中获得 8 个–10mA（无论是否建议由用户决定）、您需要覆盖 IOSTR 的自动设置并将其设置为最大值。 还是 TRM 说自动设置会为您自动实现？ 想法？ Munan</description><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/machine_5F00_translation">machine_translation</category></item><item><title>论坛文章:RE: [参考译文] CC2652R：如何评估通道质量</title><link>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1095402/cc2652r/3942747</link><pubDate>Fri, 19 Jun 2026 07:40:00 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:527f7072-9eb1-440f-b22f-0a2a60b9755c</guid><dc:creator>admin</dc:creator><description>请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。 您好： 感谢您的答复。 我将查看并考虑示例代码。 此致、</description><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/machine_5F00_translation">machine_translation</category></item><item><title>论坛文章:RE: [参考译文] CC2340R5：高驱动 IO 配置</title><link>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1095401/cc2340r5-io/3942740</link><pubDate>Thu, 18 Jun 2026 22:06:00 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:a74e7b4a-95b3-4c68-9114-1d63b7bbd5fd</guid><dc:creator>admin</dc:creator><description>请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。 您好 Munan Xu： 我们应该能够在 SysConfig 的“GPIO“部分中的“Output Strength“下设置此项。 谢谢、 Alex F</description><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/machine_5F00_translation">machine_translation</category></item><item><title>论坛文章:RE: [参考译文] CC2745P10-Q1：对网状应用使用 Zephyr 时、修改.dts 文件以启用内部低频 osc</title><link>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1095202/cc2745p10-q1-zephyr-dts-osc/3942150</link><pubDate>Thu, 18 Jun 2026 15:16:00 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:7eaa5b58-7380-4471-b6ef-9f53df415136</guid><dc:creator>admin</dc:creator><description>请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。 虽然不是很巧妙,但使用 PowerLPF3_selectLFOSC () 可以作为一个修补程序来防止有故障的.dts 感谢您在这方面的帮助 谢谢 Mike</description><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/machine_5F00_translation">machine_translation</category></item><item><title>论坛文章:RE: [参考译文] CC2340R5：澄清请求：CC2340R5 与 R53 蓝牙信道探测 (CS) 支持&amp;AMP；SIG 状态</title><link>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1095203/cc2340r5-cc2340r5-r53-cs-amp-sig/3942152</link><pubDate>Thu, 18 Jun 2026 14:38:00 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:9e690670-0568-4080-95da-b73b4e3fb021</guid><dc:creator>admin</dc:creator><description>请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。 你好、Mike、 [quote]是否正确、sig 不支持信道探测 [/quote] 没错、遗憾的是、CC2340R52 不支持信道探测 [quote]对于 基于 sig 的器件 、IS 信道探测：[/quote] 对于 R53 设备、支持信道探测的反射者角色、但是当前不支持发起者角色 [quote] sig 由于 R5 上缺乏 CS 支持、这主要是由于[/quote] R52 缺少 CS 支持主要是由于 RAM 限制。 R53 型号具有更多的 RAM 空间、从而支持 CS [quote]是否有计划或可能提供[/quote] 目前还没有计划在 R52 上启用 CS 支持。 目前、要评估信道探测、我建议使用最新 SDK 中的 car_node 和 key_node 示例 (9.20)。 有关如何使用这些示例的说明、以及有关信道探测的更多信息、 用户指南中的信道探测一节 对此进行了讨论。 希望这能回答您的问题！ 此致、 Tarek D</description><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/machine_5F00_translation">machine_translation</category></item><item><title>论坛文章:[参考译文] CC2745R10-Q1：Car_Node 示例将输入 Hardfault 并注释 App_extCtrlInit()？</title><link>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1095204/cc2745r10-q1-car_node-hardfault-app_extctrlinit</link><pubDate>Thu, 18 Jun 2026 06:01:00 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:54242daa-0a7d-499a-9e35-34477763b088</guid><dc:creator>admin</dc:creator><description>请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。 https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1656477/cc2745r10-q1-car_node-example-will-enter-hardfault-with-commenting-app_extctrlinit 器件型号： CC2745R10-Q1 您好的团队、 我发现了一些有线的东西。 当我注释 App_extCtrlInit() 在汽车节点上测试待机时、有时它会在没有特定时间（30s ~几分钟）的情况下进入 Hardfault。 SDK 版本：simplelink_lowpower_f3_SDK_9_20_00_81 硬件：LP-EM-CC2745R10-A SW：Car_Node 示例。 团队能否重现问题并对此进行调试？ 谢谢、 此致、 Connor</description><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/CC2745R10_2D00_Q1">CC2745R10-Q1</category><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/Body%2bElectronics%2b_2600_amp_3B00_%2bLighting">Body Electronics &amp;amp; Lighting</category><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/machine_5F00_translation">machine_translation</category></item><item><title>论坛文章:RE: [参考译文] CC2340R5：澄清请求：CC2340R5 与 R53 蓝牙信道探测 (CS) 支持&amp;AMP；SIG 状态</title><link>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1095203/cc2340r5-cc2340r5-r53-cs-amp-sig/3942151</link><pubDate>Thu, 18 Jun 2026 02:46:00 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:baa268ea-95a6-4aec-8da0-3ca9a2341c7b</guid><dc:creator>admin</dc:creator><description>请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。 尊敬的 Mike： 感谢您联系我们。 我们将调查您的问题、并尽快回复您。 此致、 1 月</description><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/machine_5F00_translation">machine_translation</category></item><item><title>论坛文章:RE: [参考译文] CC2642R：基于 CC2642 捕获 RSSI</title><link>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1095205/cc2642r-cc2642-rssi/3942155</link><pubDate>Thu, 18 Jun 2026 02:45:00 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:7a98519d-e706-4100-a5c8-ac1fdd3163c9</guid><dc:creator>admin</dc:creator><description>请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。 尊敬的 Deng： CM 应该可以跟踪完整的连接、但需要完全捕获连接建立情况。 此致、 1 月</description><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/machine_5F00_translation">machine_translation</category></item><item><title>论坛文章:RE: [参考译文] CC2652R7：CC2652R7 勘误表公告 Sys_05—提升的 POR 解决方案</title><link>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1095206/cc2652r7-cc2652r7-sys_05-por/3942156</link><pubDate>Wed, 17 Jun 2026 20:04:00 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:01d3fc1d-dfe8-458f-875e-c2a9e2cd1f2a</guid><dc:creator>admin</dc:creator><description>请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。 您好、 如果您能够将复位线路保持在低电平、直到 VDDS 稳定、您将实现预期的目标。 就不需要退回 RESET_N 电压监控器确实是一种保持复位线路以等待电压稳定的好方法。 尽管可以使用 MAX6897、但 TI 的工作 原理是、作为可能适合您设计的备选器件、TPS3842 具有可调节阈值和可编程延迟。 μ s 希望这对您有所帮助、 Rafael</description><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/machine_5F00_translation">machine_translation</category></item><item><title>论坛文章:RE: [参考译文] CC2652P：20dBm 参考设计问题</title><link>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1095207/cc2652p-20dbm/3942157</link><pubDate>Wed, 17 Jun 2026 19:42:00 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:a4582277-a775-4429-83a6-6effac053429</guid><dc:creator>admin</dc:creator><description>请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。 尊敬的 Raphael： 1) CC1352PEM-XD7793-XD24-PA24 和 LAUNCHXL-CC1352P-2 之间没有功能差异 — 这种设计采用适合我们验证平台的外形尺寸。 如果您感兴趣、请参阅 器件页面的设计工具部分、其中包含 CC1352PEM-XD7793-XD24-PA24 的设计文件。 之所以存在器件值差异、是因为在 CC1352PEM 上使用了 0402 器件、而在 LAUNCHXL 上使用了 0201 器件。 2) 电路板层叠的差异会影响平衡 — 非平衡变压器和滤波器的射频性能。 在这种情况下、您可能必须试验和调整这些值以获得峰值性能。 3) 请选择 LAUNCHXL-CC1352P-2 4) 器件间差异是制造过程固有的,但最大功率下的运行通常不太容易,因为 PA 的运行接近饱和。 我建议阅读我们的硬件指南文档 ( SWRA640 ) 的第 10 节以了解相关详细信息。 希望这对您有所帮助、 Rafael</description><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/machine_5F00_translation">machine_translation</category></item><item><title>论坛文章:[参考译文] CC2340R5：高驱动 IO 配置</title><link>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1095401/cc2340r5-io</link><pubDate>Wed, 17 Jun 2026 18:44:00 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:dad3db5c-5b7a-4735-aa87-9fbea269c42e</guid><dc:creator>admin</dc:creator><description>Other Parts Discussed in Thread: SYSCONFIG 请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。 https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1656361/cc2340r5-high-drive-io-configuration 器件型号： CC2340R5 主题： SysConfig 中讨论的其他器件 您好： 使用 8mA 驱动电流设置时、建议的驱动强度 (IOSTR) 设置是多少？ 是否建议使用最大驱动强度？ 还是应该将其保留为 Auto？ Munan</description><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/SYSCONFIG">SYSCONFIG</category><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/machine_5F00_translation">machine_translation</category><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/CC2340R5">CC2340R5</category><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/building%2bautomation">building automation</category></item><item><title>论坛文章:RE: [参考译文] CC2340R5：LPN 节点中具有高电流</title><link>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1094968/cc2340r5-lpn/3941181</link><pubDate>Wed, 17 Jun 2026 18:36:00 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:8a84970a-7f29-4081-8d56-af1603444a0f</guid><dc:creator>admin</dc:creator><description>请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。 嗨、Michael、 设置 CONFIG_ADC=y 可能会导致将其添加到 dts 或 dtsi 文件中。 我会对此进行研究。 提供 9.20.00。 链接如下： https://github.com/TexasInstruments/simplelink-zephyr/tree/v3.7.0-ti-9.20.00 此致、 Tarek D</description><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/machine_5F00_translation">machine_translation</category></item><item><title>论坛文章:RE: [参考译文] CC2340R5：LPN 节点中具有高电流</title><link>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1094968/cc2340r5-lpn/3941180</link><pubDate>Wed, 17 Jun 2026 18:33:00 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:36f80165-ca04-4cc7-b06b-0eefd48303a2</guid><dc:creator>admin</dc:creator><description>请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。 嗨、Tarek 我正在使用一个月前下载的版本： 发布 Zephyr 3.7.0-ti-9.14.02_ea&amp;#183;TexasInstruments/simplelink-Zephyr 。 请记住、即使我 在 prj.config 中有 CONFIG_ADC=y、我也从不定义 const struct device *adc_dev = device_DT_GET ( adc_node )； 或在我的代码中初始化 ADC。 9.20 版本是否可用？ 9.14 设备树出现了一些错误。</description><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/machine_5F00_translation">machine_translation</category></item><item><title>论坛文章:RE: [参考译文] CC2340R5：LPN 节点中具有高电流</title><link>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1094968/cc2340r5-lpn/3941179</link><pubDate>Wed, 17 Jun 2026 18:09:00 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:d65bd64b-e4be-4c2b-b307-9867cd6379c6</guid><dc:creator>admin</dc:creator><description>请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。 嗨、Michael、 令人惊讶的是、如果不使用 ADC、它会消耗功率。 您是否正在使用最新的 9.20.00 Zephyr 存储库？ 至于读取电池电平、有 2 种主要方法是读取 PMUD.BAT 寄存器或使用 ADC。 ADC 可能更准确、但取决于您的实现方式。 我希望这对您有所帮助！ 此致、 Tarek D</description><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/machine_5F00_translation">machine_translation</category></item><item><title>论坛文章:RE: [参考译文] CC2340R5：SimpleLink 中的 MIT 许可证是什么？</title><link>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1094969/cc2340r5-simplelink-mit/3941182</link><pubDate>Wed, 17 Jun 2026 15:52:00 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:6689b981-9c01-4311-beb2-853ca066307d</guid><dc:creator>admin</dc:creator><description>请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。 您好、Toyama、 SDK 中的 RCL .c/.h 代码不引用 MIT 许可证、MIT 许可证引用的是 看起来与 文档生成和创建 (IE doxygen) 相关的 JavaScript 。 谢谢、 Alex F</description><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/machine_5F00_translation">machine_translation</category></item><item><title>论坛文章:[参考译文] CC2652P：20dBm 参考设计问题</title><link>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1095207/cc2652p-20dbm</link><pubDate>Wed, 17 Jun 2026 14:46:00 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:ef710ae6-00b0-493e-9dd0-95e0f29f9c33</guid><dc:creator>admin</dc:creator><description>Other Parts Discussed in Thread: CC2652P , SYSCONFIG 请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。 https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1656292/cc2652p-20dbm-reference-design-questions 器件型号： CC2652P 主题： SysConfig 中讨论的其他器件 您好！ 我们正在基于 CC2652P 设计一个 PCB、在这里我们希望更大限度地提高 RX 灵敏度和 20dBm TX 性能。 我们对此有几个问题： CC1352PEM-XD7793-XD24-PA24 和 LAUNCHXL-CC1352P-2 参考设计之间有何区别？ 由于数据表中采用了 CC1352PEM-XD7793-XD24-PA24 作为参考、因此我想它提供更好的性能...？ 与参考设计相比、PCB 上的顶部平面和 L2 平面之间的距离更短。 这意味着我们必须调整布线宽度以保持 50 欧姆阻抗匹配。 由于介电厚度差异的变化，我们是否还需要调整滤波器和平衡 — 非平衡变压器中的无源器件？ 对于 SysConfig 中的固件、我们不能在“RF 设计&amp;gt;基于射频设计“下选择 CC1352PEM-XD7793-XD24-PA24。 我们应该怎么做？ 我们担心 这里报告的器件间 TX 功率变化 。 您对此有任何更新吗？ 非常感谢您的帮助！ 此致、 拉斐尔</description><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/Energy%2binfrastructure">Energy infrastructure</category><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/SYSCONFIG">SYSCONFIG</category><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/machine_5F00_translation">machine_translation</category><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/CC2652P">CC2652P</category></item><item><title>论坛文章:RE: [参考译文] CC23XX-REPORTS：构建完成后不会生成新的.out 文件。</title><link>https://e2echina.ti.com/support/machine-translation/mt-bluetooth/f/mt-bluetooth-forum/1094970/cc23xx-reports-out/3941187</link><pubDate>Wed, 17 Jun 2026 14:35:00 GMT</pubDate><guid isPermaLink="false">91561404-af28-475a-b96b-cb6cbaadd097:b3ddd1ca-5e89-4b1a-9177-7ec2de83f86b</guid><dc:creator>admin</dc:creator><description>请注意，本文内容源自机器翻译，可能存在语法或其它翻译错误，仅供参考。如需获取准确内容，请参阅链接中的英语原文或自行翻译。 欢迎您 Amal。 再见。</description><category domain="https://e2echina.ti.com/support/machine-translation/mt-bluetooth/tags/machine_5F00_translation">machine_translation</category></item></channel></rss>