
orocos-rtt
linuxarmsummary
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
CoSimA
OVERVIEW Concepts EXAMPLES Creating an RTT Component Advanced Example: Projected Dynamics MODELING Workbench Architecture Development Process RUNTIME Installation Features SIMULATION CoSimA Robot Models COMPONENT LIBRARY Overview SUPPORT转载 2020-05-22 15:29:09 · 187 阅读 · 0 评论 -
OROCOS_TCPRport 测试
测试修改代码 需要修改代码tcp 通信不友好bool TcpReporting::configureHook(){ port=port_prop.value(); log(Error) << "is TcpReporting .............."; return true; } bool TcpReporting::startHook() { this->configur...原创 2020-05-21 18:48:57 · 311 阅读 · 0 评论 -
OROCOS-OCL 架构编译测试代码
## This file sets some defaults from your *source* directory, such that# for each build directory you create, the same defaults are used.### BIG WARNING :## DO NOT EDIT THIS FILE ! Instead: copy it to orocos-ocl.cmake (in the# top source director.原创 2020-05-20 21:54:51 · 727 阅读 · 1 评论 -
RTT CAS无锁机制
程序对数据操作流程: 读数据 改写 回写解决数据一致性问题主存和独立工作区的数据一致性 volatile SIndexes _indxes; 主存中线程可见数据(不做缓存机制直接操作主存储器) CachePtrType advance_w() { SIndexes oldval, newval; ...原创 2020-05-12 18:44:31 · 331 阅读 · 0 评论 -
OROCOS_RTT 端口通讯建立-1
问题总结: 1 为什么通讯需要建立 PORT 和 channel 的概念 PORT 表明数据组件的数据入口或者出口,所谓的channenl 是数据传输的通道,数据传输上有多种手段,和传输特性。 在数据层我们关心的是的数据特性, InputPort<T> , OutputPort<T> 在数据传输层我们关心...原创 2020-05-06 15:14:45 · 858 阅读 · 0 评论 -
LTT in OROCOS
Orocos LTT in Orocos Installation LTTng Orocos Description of changes Example About the naming of threads TODOWARNINGTHIS IS A WORK IN PROGRESS. Nothing is included in the main tree ye...转载 2020-05-02 07:36:17 · 291 阅读 · 0 评论 -
OROCOS-RTT性能跟踪调试 LTT in Orocos
Orocos LTT in Orocos Installation LTTng Orocos Description of changes Example About the naming of threads TODOWARNINGTHIS IS A WORK IN PROGRESS. Nothing is included in the main tree ye...转载 2020-05-02 07:15:24 · 647 阅读 · 0 评论 -
orocos 建立自己的模块,编译,测试
1建立模块zz@ubuntu:~/orocos/myrobot$ orocreate-pkg myrobot component2将模块路径加入包环境zz@ubuntu:~/orocos/myrobot$ export ROS_PACKAGE_PATH=$ROS_PACKAGE_PATH:/home/zz/orocos/myrobot3编译模块# Standard...原创 2019-12-23 09:13:13 · 848 阅读 · 0 评论 -
RTT源码分析之main函数改写测试-1
/** * @file main.h * The prototype of the application's ORO_main * */#include "startstop.h"#include "../Logger.hpp"/** * Forward declare this wrapper around the user code. * @see ORO_ma...原创 2019-12-20 20:09:53 · 434 阅读 · 0 评论