sos.h
来自「SOS操作系统用于无线传感器网络节点的源代码」· C头文件 代码 · 共 40 行
H
40 行
/**
* @brief main include file for SOS
* @author Simon Han (simonhan@ee.ucla.edu)
*
*/
#ifndef _SOS_H
#define _SOS_H
#include <stdio.h>
#include <stddef.h>
#include <stdlib.h>
#include <string.h>
#include <pid.h>
#include <sos_types.h>
#include <sos_module_types.h>
#include <sos_error_types.h>
#include <message.h>
#include <malloc.h>
//#include <monitor.h>
//#include <fntable.h>
#include <sos_cam.h>
//#include <timestamp.h>
#include <sos_info.h>
//#include <measurement.h>
#include <sched.h>
#ifndef QUALNET_PLATFORM
/**
* @brief initialization
* @params cond booting condition
*/
extern int sos_main(uint8_t cond);
#endif //QUALNET_PLATFORM
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?