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.

[参考译文] MSP430FR2311:什么存储在 FRAM 地址0xFFFF 中?

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

https://e2e.ti.com/support/microcontrollers/msp-low-power-microcontrollers-group/msp430/f/msp-low-power-microcontroller-forum/834676/msp430fr2311-what-is-stored-at-fram-address-0xffff

器件型号:MSP430FR2311

我将执行一个例程来 crc16整个 FRAM 区域、包括 MSP430FR2311的矢量表。 当 MSP430是16位对齐的处理器时、我想知道为什么 ISR 矢量表地址以奇数值结尾? 该额外字节用于什么用途、甚至是否真正存在?

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

    尊敬的 Chris:

    矢量表启动0xFF88、这是一个偶数地址。 中断矢量是真正的16位对齐。 它在0xFFFE-0xFFFF 处复位 ISR 矢量。

      

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

    非常感谢您的快速回答、我现在看到了。 我犯了一个简单的阅读错误。