blink_app.c
来自「SOS操作系统用于无线传感器网络节点的源代码」· C语言 代码 · 共 22 行
C
22 行
#include "sos.h"
/**
* Must also include the header file that defines the
* blink_get_header() function.
*/
mod_header_ptr blink_get_header();
/**
* application start
* This function is called once at the end od SOS initialization
*/
void sos_start()
{
ker_register_module(blink_get_header());
/* add by wmchen*/
ker_register_module(navi_get_header());
ker_register_module(flooding_get_header());
// ker_register_module(blink1_get_header());
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?