This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

[参考译文] LP-CC1311P3:为唯一的 MCU 供电

Guru**** 664280 points
Other Parts Discussed in Thread: CC1311P3
请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/wireless-connectivity/sub-1-ghz-group/sub-1-ghz/f/sub-1-ghz-forum/1276572/lp-cc1311p3-powering-the-only-mcu

器件型号:LP-CC1311P3
主题中讨论的其他器件:CC1311P3

是否有方法可以仅为 Launchpad 中的 MCU (即 CC1311P3)提供电源? 因此、我可以执行代码操作来消耗功率。

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    您是否查看过以下内容: https://www.ti.com/lit/pdf/swra478 ?

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    此处:- CC1311P3 LaunchPad (TI.com) (https://dev.ti.com/tirex/explore/node?node=A__AJQ.W4SjOquNWJ4zKRUcCw__cc13xx_devtools__FUz-xrs__LATEST)

    相关内容为"SimpleLink CC13xx 和 CC26xx SDK 随附的 LaunchPad 电路板文件中提供了对将串行闪存置于低功耗模式的支持"。

    我要弄清楚如何做到这一点。

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 Kritank:

    这意味着,在我们的示例中,Board_init ()方法会在执行应用程序代码之前自动将闪存置于低功耗模式。

    /*
     *  ======== Board_init ========
     *  Perform any initialization needed before using any board APIs
     */
    void Board_init(void)
    {
        /* ==== /ti/drivers/Power initialization ==== */
        Power_init();
    
        /* ==== /ti/devices/CCFG initialization ==== */
    
        /* ==== /ti/drivers/GPIO initialization ==== */
        /* Setup GPIO module and default-initialise pins */
        GPIO_init();
    
        Board_shutDownExtFlash();
    
        Board_initHook();
    }

    此致、

    亚瑟

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    很好。 非常感谢、Arthur。