(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))
至此,编译链接成功,下载到板子上,看到灯闪烁:-)