-
Notifications
You must be signed in to change notification settings - Fork 3
/
robot_frames.orogen
40 lines (26 loc) · 1.04 KB
/
robot_frames.orogen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name "robot_frames"
using_library "robot_frames"
import_types_from "robot_frames/robot_framesTypes.hpp"
import_types_from "base"
#import_types_from "transformer"
task_context "Task" do
needs_configuration
property "urdf_file", "/std/string"
property "prefix", "/std/string"
property "output_static_transforms", "bool", true
property "init_invalid", "bool", false
property "output_only_valid", "bool", false
input_port "input", "/base/samples/Joints"
dynamic_output_port /\w/, "base/samples/RigidBodyState"
output_port "output_transforms", "std/vector<base/samples/RigidBodyState"
port_driven 'input'
end
task_context "ChainPublisher" do
needs_configuration
#By entering '__base__' as root or tip link, one could refer to the actual base-link of the robot model
property "chains", "std/vector<robot_frames/Chain>"
property "urdf_file", "std/string"
input_port "input", "/base/samples/Joints"
dynamic_output_port /\w/, "base/samples/RigidBodyState"
port_driven 'input'
end