7.9.8.101.OnReset()¶
在复位目标处理器后调用 GEL 回调函数。
句法
OnReset( int nErrorCode );
参数
nErrorCode 0(零)表示成功。
描述
如果在已加载的 GEL 文件中定义,则在目标处理器复位后调用 OnReset()。
示例
OnReset(int nErrorCode)
{
if (nErrorCode)
GEL_TextOut(“An error occurred while resetting.-%d-n”,,,,, nErrorCode);
else
GEL_TextOut(“Reset was successful.-%d-n”,,,,, nErrorCode);
}