/** * Thread structure */struct rt_thread{ /* rt object */ char name[RT_NAME_MAX]; /**< the name of thread 线程名称*/ rt_uint8_t type; /**< type of object 对象类型*/ rt_uint8_t flags; /**< thread's flags 标志位*/#ifdef RT_USING_MODULE void *module_id; /**< id o...
在Socket 中,它使用一个套接字来记录网络的一个连接,套接字是一个整数,就像我们操作文件一样,利用一个文件描述符,可以对它打开、读、写、关闭等操作,类似的,在网络中,我们也可以对 Socket 套接字进行这样子的操作,比如开启一个网络的连接、读取连接主机发送来的数据、向连接的主机发送数据、终止连接等操作。 s...
查看DICOM头文件信息,包括RT structure、RTPlan、RDose文件 上传者:Joker00007时间:2022-11-07 DICOM图像格式与BMP图像格式的转换 DICOM图像格式与BMP图像格式的转换 上传者:u012263944时间:2013-11-12 基于MATLAB软件的DICOM图像的信息提取.pdf 基于MATLAB软件的DICOM图像的信息提取.pdf ...
* Thread structure */structrt_thread{/* rt object */charname[RT_NAME_MAX];/**< the name of thread 线程名称*/rt_uint8_ttype;/**< type of object 对象类型*/rt_uint8_tflags;/**< thread's flags 标志位*/#ifdefRT_USING_MODULEvoid*module_id;/**< id of application module */#endif...
* Device structure 设备控制块 */ struct rt_device { struct rt_object parent; /**< inherit from rt_object */ enum rt_device_class_type type; /**< device type */ rt_uint16_t flag; /**< device flag */ rt_uint16_t open_flag; /**< device open flag */ ...
* @param dev the pointer of device driver structure * @param gyro the pointer of 3axes structure for receive data * * @return the reading status, RT_EOK reprensents reading the data successfully. */rt_err_tmpu6xxx_get_gyro(struct mpu6xxx_device*dev,struct mpu6xxx_3axes*gyro){struct...
* Thread structure */ structrt_thread //线程结构体 { /* rt object */ char name[RT_NAME_MAX];/**< the name of thread */ rt_uint8_t type;/**< type of object */ rt_uint8_t flags;/**< thread's flags */ /* 此处省略很多代码 ...
* Thread structure*/structrt_thread {/*rt object*/charname[RT_NAME_MAX];/**< the name of thread*/rt_uint8_t type;/**< type of object*/rt_uint8_t flags;/**< thread's flags*/#ifdef RT_USING_MODULEvoid*module_id;/**< id of application module*/#endifrt_list_t list;/**< ...
* Device structure */ struct rt_device { struct rt_object parent; /**< inherit from rt_object */ enum rt_device_class_type type; /**< device type */ rt_uint16_t flag; /**< device flag */ rt_uint16_t open_flag; /**< device open flag */ ...
/*** message queue structure*/structrt_messagequeue{structrt_ipc_objectparent;/**< inherit from ipc_object */void*msg_pool;/**< start address of message queue */rt_uint16_tmsg_size;/**< message size of each message */rt_uint16_tmax_msgs;/**< max number of messages */rt_uint16_...