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.

MSP430F5659: IAR MSP430编程中如何将变量放在特定RAM存储区地址和 WDT复归后,如何让struct结构里的变量不初始化

Part Number: MSP430F5659

问题1. IAR MSP430编程中如何将变量放在特定RAM存储区地址

struct {

int id;

char name[20];

int chinese;

int english;

int math;

int social;

double science;

}students;

问题2. WDT复归后,如何让struct结构里的变量不初始化__no_init

struct {

int id;

char name[20];

int chinese;

int english;

int math;

int social;

double science;

}students;