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.

[参考译文] RM57L843:如何进入 RM57L843的空闲模式

Guru**** 2482105 points


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

https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/697999/rm57l843-how-to-get-into-the-idle-mode-of-rm57l843

器件型号:RM57L843

大家好、

这个问题仍然存在。 仍然没有 STC 测试触发 RM57重启。 是否有更多有关此方面的信息?

BR

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


    通过写入 STC 使能密钥来启用 STC 测试后、测试仅在 CPU 执行后触发
    通过执行 CPU 空闲指令 asm (“WFI”)进入空闲模式。

    WFI
    NOP
    NOP
    NOP
    NOP
  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。
    感谢您的回复
    目前、我们在 safeTILib 中使用函数 sl_selftest_STC、该函数最终调用"WFI"。

    如下所示:
    _sl_Kickoff_STC_execution

    WFI
    BX LR

    在这个操作后、仍然没有复位。
  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。
    您好 KeZou、

    请在 WFI 之后添加几个 NOP:

    WFI
    NOP
    NOP
    NOP
    NOP
    BX LR