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.

MSP430F5438A复位类型的区分

Other Parts Discussed in Thread: MSP430F5438A

      我现在准备用MSP430F5438A开发一个新的项目。

      项目中需要用到的一个功能必须区分复位的类型。主要是区分上电复位(Power cycle)与其它的复位类型。

      我知道MSP430F5438A有一个SYSRSTIV寄存器,可以用来检查最近一次的复位原因。

      但是对于上电复位,一共有5种情况: 

0Ch = SVSL (POR)
0Eh = SVSH (POR)
10h = SVML_OVP (POR)
12h = SVMH_OVP (POR)
14h = PMMSWPOR (POR)

    按照上电的时序,最后一个被触发的POR复位应该是SVSL复位。

    所以我的程序在启动时,检查SYSRSTIV寄存器的值,如果 = 0Ch,我就认为发生了一次上电复位。

    请问我这样理解对吗?