[资料分享] 430也能玩嵌入式:Contiki内核在IAR+MSP430下移植(九)

tiankai001   2012-11-16 10:26 楼主
(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)

rtos?
点赞  2012-11-17 08:18
电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 京公网安备 11010802033920号
    写回复