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.

[参考译文] MSP430FR2033:读取速度

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

https://e2e.ti.com/support/microcontrollers/msp-low-power-microcontrollers-group/msp430/f/msp-low-power-microcontroller-forum/1362675/msp430fr2033-read-spead

器件型号:MSP430FR2033

大家好、

从 FRAM 读取96个字节的数据需要多长时间?
内核频率为1 MHz。
此程序位于 FRAM 上。
96周期?

此致、
转至

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

    如果要将数据从 FRAM 复制到 RAM、每个字节将占用多个周期。

    例如、使用 mov.w @R13+读取、R15将花费2个周期、存储 mov.w R15、0 (R14)将花费3个周期、以及一个周期进行 R14递增、共每字6个周期。

    对于每次迭代的 R13 (或 R14)边界、不进行循环测试。

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

    尊敬的 Goto:

    Zrno 有一个非常详细的答案。  如果在 code composer 中编写代码、您还可以查看反汇编过程来查看 C 编译器使用的汇编指令、并尝试像 Zrno 一样对周期进行计数。   

    谢谢。

    JD