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.

[参考译文] MSP430FR5739:MCU 启动

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

https://e2e.ti.com/support/microcontrollers/msp-low-power-microcontrollers-group/msp430/f/msp-low-power-microcontroller-forum/703834/msp430fr5739-mcu-start-up

器件型号:MSP430FR5739

MCU 在启动过程中会做什么、即 MCU 通电和用户程序开始运行之间的时间? 为什么这一时间因程序而异? 是否有任何相关文档?

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

    复位后、器件引导代码将执行以设置器件运行。 当引导代码执行完成时、如果在启动时应用了 BSL 进入序列、引导代码将跳转到应用程序或跳转到引导加载程序。

    如果您的应用程序/程序是 C 程序,则在程序到达 main()之前,它需要通过 CINIT 运行以设置栈以及任何全局变量。 此时间因应用而异。 如果有许多已初始化的全局变量,则在到达 main()之前需要一些时间进行设置。

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

    非常感谢您的解释。