Skip to content

Commit e6588a2

Browse files
Merge pull request #284 from pierre-rouanet/master
Fix an issue with angle limits.
2 parents c3131c8 + 55ce063 commit e6588a2

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pypot/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '3.1.0'
1+
__version__ = '3.1.2'

pypot/robot/config.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,8 @@ def check_motor_eprom_configuration(config, dxl_io, motor_names):
233233
dxl_io.set_wheel_mode([m['id']])
234234
time.sleep(0.5)
235235
else:
236-
dxl_io.set_joint_mode([m['id']])
236+
# TODO: we probably need a better fix for this.
237+
# dxl_io.set_joint_mode([m['id']])
237238

238239
d = numpy.linalg.norm(numpy.asarray(new_limits) - numpy.asarray(old_limits))
239240
if d > 1:

0 commit comments

Comments
 (0)