添加崩溃后恢复TT状态的功能
This commit is contained in:
parent
b23b4bf6c2
commit
5a8a10f105
@ -262,6 +262,9 @@ void sysInit(void)
|
|||||||
initTT();
|
initTT();
|
||||||
setWindowMode();
|
setWindowMode();
|
||||||
}
|
}
|
||||||
|
else if (isNeedRestore()) {//Restoring configuration after a crash
|
||||||
|
initTT();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
//INIT_COMPONENT_EXPORT(sysInit);
|
//INIT_COMPONENT_EXPORT(sysInit);
|
||||||
@ -710,6 +713,7 @@ void deInitTT_thread_entry()
|
|||||||
startAlarm();
|
startAlarm();
|
||||||
clearWindowMode();
|
clearWindowMode();
|
||||||
setManualWindow(-1);
|
setManualWindow(-1);
|
||||||
|
setWorkSta(0);
|
||||||
LOG_W("shunt down TT DONE");
|
LOG_W("shunt down TT DONE");
|
||||||
}
|
}
|
||||||
// initThread = RT_NULL;
|
// initThread = RT_NULL;
|
||||||
@ -729,6 +733,7 @@ void initTT()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
set3SRTC();
|
set3SRTC();
|
||||||
|
setWorkSta(1);
|
||||||
initThread = rt_thread_create("initTT", initTT_thread_entry, RT_NULL, 1024 * 5, 25, 10);
|
initThread = rt_thread_create("initTT", initTT_thread_entry, RT_NULL, 1024 * 5, 25, 10);
|
||||||
/* 创建成功则启动线程 */
|
/* 创建成功则启动线程 */
|
||||||
if (initThread != RT_NULL)
|
if (initThread != RT_NULL)
|
||||||
|
@ -1783,6 +1783,23 @@ void updateSysRTC(uint8_t *din, size_t len)
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* TT工作后设置状态,用于系统崩溃后恢复
|
||||||
|
* @param flag
|
||||||
|
*/
|
||||||
|
void setWorkSta(int flag)
|
||||||
|
{
|
||||||
|
set_cfg("isWorking", flag);
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* 是否需要恢复现场
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
int isNeedRestore(void)
|
||||||
|
{
|
||||||
|
return get_cfg("isWorking");
|
||||||
|
}
|
||||||
|
|
||||||
#define FUNC_DEMO
|
#define FUNC_DEMO
|
||||||
|
|
||||||
#ifdef FUNC_DEMO //测试时导出命令到控制台
|
#ifdef FUNC_DEMO //测试时导出命令到控制台
|
||||||
|
Loading…
Reference in New Issue
Block a user