Skip to content

Commit

Permalink
Merge pull request #18 from ronwalf/frame-fix
Browse files Browse the repository at this point in the history
Fixed frame ID for MTNode (no leading /)
  • Loading branch information
arunvydhya committed Jan 11, 2017
2 parents 2bcdbe7 + 3dff2e3 commit 22258c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xsens_driver/src/mtnode.py
Expand Up @@ -60,7 +60,7 @@ def __init__(self):
rospy.loginfo("MT node interface: %s at %d bd."%(device, baudrate))
self.mt = mtdevice.MTDevice(device, baudrate)

self.frame_id = get_param('~frame_id', '/mti/data')
self.frame_id = get_param('~frame_id', 'mti/data')

frame_local = get_param('~frame_local' , 'ENU')
frame_local_imu = get_param('~frame_local_imu', 'ENU')
Expand Down

0 comments on commit 22258c7

Please sign in to comment.