3. 3d slicer rt tutorial SlicerRtDoc/tutorials at master · SlicerRt/SlicerRtDoc · GitHub
采用模块化设计,做到组件内部高内聚,组件之间低耦合。 RT-Thread软件包:运行于 RT-Thread物联网操作系统平台上,面向不同应用领域的通用软件组件,由描述信息、源代码或库文件组成。RT-Thread提供了开放的软件包平台,这里存放了官方提供或开发者提供的软件包,该平台为开发者提供了众多可重用软件包的选择,这也是 RT-Th...
1997年,批准了四个DICOM RT对象标准,即: RT结构集(RTStructure set) RT计划(RTPlan) RT剂量(RTDose) RT图像(RTImage) 1999年,制定了RT治疗记录(RT Treatment Record)对象标准,包括3个标准,即: 体外照射治疗记录(Beam Treatment Record)、 近距离治疗记录(Brachytherapy Treatment Record) 放射治疗总结记录(Treatme...
which allows users to add their own application code directly based on the project. Each BSP has a similar directory structure, and most BSPs provide a README.md file, which is a markdown-format file that contains the basic introduction of BSP, and introduces how to simply start using BSP...
RT-Thread记录(二、RT-Thread内核启动流程 — 启动文件和源码分析 一、RT-Thread线程操作函数 RT-Thread线程操作包含:创建 / 初始化线程、启动线程、运行线程、删除 / 脱离线程。 1.1 动态创建线程 函数比较简单,具体的看注释就好(本文余下的函数介绍类似,看注释): ...
* timer structure */struct rt_timer{/**< inherit from rt_object */struct rt_object parent;/* 定时器链表节点 */rt_list_t row[RT_TIMER_SKIP_LIST_LEVEL];/**< timeout function 定时器超时调用的函数 */void(*timeout_func)(void*parameter);/**< timeout function's parameter 超时函数的参数...
* timer structure */ struct rt_timer { /**< inherit from rt_object */ struct rt_object parent; /* 定时器链表节点 */ rt_list_t row[RT_TIMER_SKIP_LIST_LEVEL]; /**< timeout function 定时器超时调用的函数 */ void (*timeout_func)(void *parameter); ...
* @param accel the pointer of 3axes structure for receive data * * @return the reading status, RT_EOK reprensents reading the data successfully. */rt_err_tmpu6xxx_get_accel(struct mpu6xxx_device*dev,struct mpu6xxx_3axes*accel){struct mpu6xxx_3axes tmp;rt_uint16_t sen;rt_err_t ...
include RT-Thread 内核的头文件。 libcpu 各类芯片的移植代码。 src RT-Thread 内核的源文件。 tools RT-Thread 命令构建工具的脚本文件。 目前RT-Thread已经针对将近90种开发板做好了移植,大部分 BSP 都支持 MDK﹑IAR开发环境和GCC编译器,并且已经提供了默认的 MDK 和 IAR 工程,用户可以直接基于这个工程添加自...
* mailbox structure */ struct rt_mailbox { struct rt_ipc_object parent; /**< inherit from ipc_object */ rt_ubase_t *msg_pool; /**< 邮箱缓冲区的开始地址 */ rt_uint16_t size; /**< 邮箱缓冲区的大小 */ rt_uint16_t entry; /**< 邮箱中邮件的数目 */ ...