Name
{{ rtc.basicInfo.name }}
Brief
{{ rtc.basicInfo.description }}
Description
{{ rtc.basicInfo.doc.description }}
License
{{ rtc.basicInfo.doc.license }}
Image
[post_thumbnail size='full']
Language
{{ rtc.language.kind }}
URL
{{ info['url'] }}
Platform
{{ info['platform'] }}
Data In Ports
Name |
Type |
Unit |
Description |
{% for port in rtc.inports %}
{{ port.name }} |
{{ port.type }} |
{{ port.unit }} |
{{ port.doc.description }} |
{% endfor %}
Data Out Ports
Name |
Type |
Unit |
Description |
{% for port in rtc.outports %}
{{ port.name }} |
{{ port.type }} |
{{ port.doc.unit }} |
{{ port.doc.description }} |
{% endfor %}
Service Ports
{% for port in rtc.serviceports %}{{ port.name }}
{{ port.doc.description }}
Name |
Direction |
Type |
Description |
{% for intf in port.serviceInterfaces %}
{{ intf.name }} |
{{ intf.direction }} |
{{ intf.type }} |
{{ intf.doc.description }} |
{% endfor %}
{% endfor %}
Configurations
Name |
Type |
Default |
Unit |
Description |
{% for conf in rtc.configurationSet.configurations %}
{{ conf.name }} |
{{ conf.type }} |
{{ conf.defaultValue }} |
{{ conf.unit }} |
{{ conf.doc.description }} |
{% endfor %}
How To Build
{% if rtc.language.kind == 'C++' %}
Linux
$ git clone {{ info['url'] }}
$ cd {{ rtc.basicInfo.name }}
$ mkdir build
$ cd build
$ cmake ../
$ make
Windows
Download ZIP file from the website, and use CMake to generate VC2010 project.
Then, open the project and build it.
{% elif rtc.language.kind == 'Python' %}
$ git clone {{ info['url'] }}
$ cd {{ rtc.basicInfo.name }}
$ mkdir build
$ cd build
$ cmake ../
$ make
{% elif rtc.language.kind == 'Java' %}
Please import .project by Eclipse IDE and build it.
{% endif %}
How To Build in wasanbon
$ wasanbon-admin.py package create {{ rtc.name }}_test_project # You can also use other preinstalled package
$ wasanbon-cd {{ rtc.name }}_test_project
$ ./mgr.py repository clone {{ info['name'] }}
$ ./mgr.py rtc build {{ rtc.name }}
$ ./mgr.py rtc run {{ rtc.name }} # To Run RTC
Profile Status
Not available
Build Status
Build in Windows
Not available
Build in OSX
Not available
Build in Linux
Not available
Copyright
{{ rtc.basicInfo.vendor }}