Skip to content

Commit

Permalink
Merge pull request #691 from ROBOTIS-GIT/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
ROBOTIS-Will authored Dec 30, 2020
2 parents ba10294 + fa62756 commit bc309c0
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 8 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,15 @@ env:
matrix:
- ROS_DISTRO=kinetic ROS_REPO=ros-shadow-fixed UPSTREAM_WORKSPACE=debian OS_NAME=ubuntu OS_CODE_NAME=xenial
- ROS_DISTRO=melodic ROS_REPO=ros-shadow-fixed UPSTREAM_WORKSPACE=debian OS_NAME=ubuntu OS_CODE_NAME=bionic
- ROS_DISTRO=melodic ROS_REPO=ros-shadow-fixed UPSTREAM_WORKSPACE=debian OS_NAME=debian OS_CODE_NAME=stretch
- ROS_DISTRO=noetic ROS_REPO=ros-shadow-fixed UPSTREAM_WORKSPACE=debian OS_NAME=ubuntu OS_CODE_NAME=focal
branches:
only:
- master
- develop
- kinetic-devel
- melodic-devel
- noetic-devel

install:
- git clone https://github.com/ros-industrial/industrial_ci.git .ci_config
script:
Expand Down
2 changes: 1 addition & 1 deletion turtlebot3_description/urdf/turtlebot3_burger.gazebo.xacro
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
<topicName>imu</topicName>
<serviceName>imu_service</serviceName>
<gaussianNoise>0.0</gaussianNoise>
<updateRate>200</updateRate>
<updateRate>0</updateRate>
<imu>
<noise>
<type>gaussian</type>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
<topicName>imu</topicName>
<serviceName>imu_service</serviceName>
<gaussianNoise>0.0</gaussianNoise>
<updateRate>200</updateRate>
<updateRate>0</updateRate>
<imu>
<noise>
<type>gaussian</type>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
<topicName>imu</topicName>
<serviceName>imu_service</serviceName>
<gaussianNoise>0.0</gaussianNoise>
<updateRate>200</updateRate>
<updateRate>0</updateRate>
<imu>
<noise>
<type>gaussian</type>
Expand Down
2 changes: 1 addition & 1 deletion turtlebot3_description/urdf/turtlebot3_waffle.gazebo.xacro
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
<topicName>imu</topicName>
<serviceName>imu_service</serviceName>
<gaussianNoise>0.0</gaussianNoise>
<updateRate>200</updateRate>
<updateRate>0</updateRate>
<imu>
<noise>
<type>gaussian</type>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
<topicName>imu</topicName>
<serviceName>imu_service</serviceName>
<gaussianNoise>0.0</gaussianNoise>
<updateRate>200</updateRate>
<updateRate>0</updateRate>
<imu>
<noise>
<type>gaussian</type>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
<topicName>imu</topicName>
<serviceName>imu_service</serviceName>
<gaussianNoise>0.0</gaussianNoise>
<updateRate>200</updateRate>
<updateRate>0</updateRate>
<imu>
<noise>
<type>gaussian</type>
Expand Down
5 changes: 4 additions & 1 deletion turtlebot3_teleop/nodes/turtlebot3_teleop_key
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,10 @@ Communications Failed

def getKey():
if os.name == 'nt':
return msvcrt.getch()
if sys.version_info[0] >= 3:
return msvcrt.getch().decode()
else:
return msvcrt.getch()

tty.setraw(sys.stdin.fileno())
rlist, _, _ = select.select([sys.stdin], [], [], 0.1)
Expand Down

0 comments on commit bc309c0

Please sign in to comment.