发布时间:2013-04-25 17:08:33
Overview1. All Rime layers conform to the POSIX standard, which mainly consists of 4 interfaces, open/close/send/recv.2. The header for lower layer will be added at the beginning of the packet and vice versa.3. For each layer, the send function forms a new header with specific information, and.........【阅读全文】
发布时间:2013-04-19 11:33:04
最近由于项目的需要,这几天开始研究基于Linux Ubuntu的Contiki微操作系统在micaz平台的开发环境搭建。由于这个系统的资料网上非常难找,基本上都是英文的资料,所以我想将自己在开发中的心得体会写下来,希望后来者能够少走点弯路。大家学习的时候可以参考的网站http://zh.wikipedia.org/zh/Contikihttp://www.sics..........【阅读全文】
发布时间:2013-04-19 11:08:44
摘要:本文将Contiki的Rime协议栈学习笔记整理成篇,便于索引。博文的顺序系推荐阅读的顺序。Rime协议栈概述Contiki Rime 协议栈概述及学习资料Rime 协议栈地址 rimeaddr_tRime 协议栈通道 channelRime 协议栈缓冲区管理Rime协议栈单跳单播概述Contiki学习笔记:Rime协.........【阅读全文】
发布时间:2013-04-19 10:20:38
PROCESSPROCESS宏定义在core\sys的process.h文件内,如下:#define PROCESS(name, strname) \ PROCESS_THREAD(name, ev, data); \ struct process name = { NULL, strname, \&nb.........【阅读全文】
发布时间:2013-04-18 13:53:01
以contiki 2.6中最简单的example/hello_world.c为例。程序的代码如下:PROCESS(hello_world_process, "Hello world process");AUTOSTART_PROCESSES(&hello_world_process);/*---------------------------------------------------------------------------*/PROCESS_THREAD(hell.........【阅读全文】