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: Read spead

Part Number: MSP430FR2033

Hi team,

How long does it take to read 96 bytes of data from FRAM to RAM?
The core frequency is 1 MHz.
The program is on FRAM.
96cycle?

Best regards,
Goto

  • If you want to copy data from FRAM to RAM, it will take more than one cycle per byte.

    For example, reading with mov.w @R13+, R15 will take 2 cycles, and store mov.w R15, 0(R14) will take 3 cycles, and one cycle for R14 increment, total 6 cycles per word.

    This is without loop test for R13 (or R14) border for each iteration.

  • Hey Goto,

    Zrno has a very detailed answer.  If you write the code in code composer, you can also look at the disassembly to see the assembly instructions the c-compiler used and try and count the cycles like Zrno did from there.  

    Thanks,

    JD

**Attention** This is a public forum