MC9S08QG
没有办法进入到background mode
command窗口提示Error: Can not enter background mode.
ICD 中显示MCU reset line:high MCU Voltage:Vcc>1.0v
没有烧自己写SCI之前,是可以写其他的程序的
是不是系统配置不对啊?
void InitSysOpts()
{
SOPT1 = 0xe2; // enable COP, STOP and BKGND
SOPT2 = 0x00; // select cop clk
SPMSC1 =0x65; // enable LVD as int, disabled in stop
if (SPMSC2_PDF)
{ // Check if recovering from stop1
SPMSC2 = 0x06; // Reconfigure MCU for stop1 mode
}
if (SPMSC2_PPDF) { // Check if recovering from stop2
SPMSC2 = 0x07; // Reconfigure MCU for stop2 mode
}
} //end InitSysOpts |