原创
【转贴】430也能玩嵌入式:Contiki内核在IAR+MSP430下移植(九)
430下也能跑操作系统,本文转自:http://blog.chinaunix.net/uid-9112803-id-3146985.html
(7) profile_timestamps和PROFILE_TIMESTAMP_PTR未定义
这两个变量都在core/sys/profile-aggregates.c,其用途是"Compuation of aggregates for the Contiki profiling system"。但整个Contiki源码找不到有定义的,真无语了,直接从工程移除吧。
庆幸的是,Google搜索找到了profile.h(v 1.2 2007/11/17,而该工程的profile.h是v 1.3 2008/01/17)[1]文件含有这些变量定义,在profile.h增加如下内容:
-
/**************added by jelline**********************/
-
struct profile_timestamp
-
{
-
const char *ptr;
-
rtimer_clock_t time;
-
};
-
-
#ifdef PROFILE_CONF_LIST_LENGTH
-
#define PROFILE_LIST_LENGTH PROFILE_CONF_LIST_LENGTH
-
#else
-
#define PROFILE_LIST_LENGTH 128
-
#endif
-
-
extern struct profile_timestamp profile_timestamps[PROFILE_LIST_LENGTH];
-
extern unsigned int profile_timestamp_ptr;
-
extern rtimer_clock_t profile_timestamp_time;
-
-
#define PROFILE_TIMESTAMP_PTR (profile_timestamp_ptr / sizeof(struct profile_timestamp))
至此,编译链接成功,下载到板子上,看到灯闪烁:-)
参考资料:
[1] strobit.googlecode.com/svn-history/r396/trunk/widgetmesh/os/core/sys/profile.h
文章评论(0条评论)
登录后参与讨论