Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert #239 (temporary, hotfix to #308) #317

Merged
merged 1 commit into from
Apr 29, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions nextage_ros_bridge/src/nextage_ros_bridge/nextage_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,18 +330,20 @@ def getRTCList(self):
'''
Overwriting HrpsysConfigurator.getRTCList
Returning predefined list of RT components.

As of March 2016, this method internally calls HIRONX.getRTCList() and
returns what it returns. Although we could simply remove this method
from NextageClient, we still keep it; it'd be easier
to modify an existing method than to add a new overridden method,
in case we might want to define RTC return list differently from HIRONX.

@rtype [[str]]
@return List of available components. Each element consists of a list
of abbreviated and full names of the component.
'''
return HIRONX.getRTCList(self)
return [
['seq', "SequencePlayer"],
['sh', "StateHolder"],
['fk', "ForwardKinematics"],
['el', "SoftErrorLimiter"],
# ['co', "CollisionDetector"],
# ['sc', "ServoController"],
['ic', "ImpedanceController"],
['log', "DataLogger"]
]

def goInitial(self, tm=7, wait=True, init_pose_type=0):
'''
Expand Down