1.
(CoreCon) 16:42:08 05/06/2010 中国标准时间: Warning: One or more services failed to connect. Make sure that the service is properly configured.
(CoreCon) 16:42:18 05/06/2010 中国标准时间: Download service map set to NONE; ignoring download request!
The Kernel Debugger is waiting to connect with target.
KITL停止在该项,但是代码设定和KITL基本设定都正确。
最终定位问题是:
Transport中setting中,将com1的硬件流控关闭即可。
2.
OAL的调试信息开关:
UINT32 g_oalLogMask = OAL_LOG_ERROR|OAL_LOG_WARN|OAL_LOG_INFO;
出示设定值如上所示。
现在要增加对OAL_LOG_FUNC类型信息的输出,不能通过如下方法:
g_oalLogMask = OAL_LOG_ERROR|OAL_LOG_WARN|OAL_LOG_INFO|OAL_LOG_FUNC;
而应该如下:
g_oalLogMask = OAL_LOG_ERROR|OAL_LOG_WARN|OAL_LOG_INFO| (1<<OAL_LOG_FUNC);
因为:
一般的调试输出语句如下:
OALMSG( OAL_FUNC , (L"+OALInterruptInit/r/n") );
相关的定义如下:
#define OAL_FUNC OALZONE(OAL_LOG_FUNC)
#define OALZONE(n) (g_oalLogMask&(1<<n))
这个问题把我迷惑了好久,现在终于搞清楚啦。