-
Notifications
You must be signed in to change notification settings - Fork 4
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
robot_description_loaderを実装 #42
Conversation
display.launch.pyでdescription_loaderを使うように変更お願いします |
github上でテストを実行したいのでCIファイルを追加してください |
Co-authored-by: Daisuke Sato <daisuke.sato@rt-net.jp>
Co-authored-by: Daisuke Sato <daisuke.sato@rt-net.jp>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
レビューコメント反映し忘れていました。。。コメントの確認お願いします。
urdf/raspimouse.urdf.xacro
Outdated
<xacro:arg name="use_gazebo" default="false" /> | ||
<xacro:arg name="use_rgb_camera" default="false" /> | ||
<xacro:arg name="use_line_sensor" default="false" /> | ||
<xacro:arg name="use_lidar_urg" default="false" /> | ||
<xacro:arg name="use_lidar_lds" default="false" /> | ||
<xacro:arg name="use_lidar_rplidar" default="false" /> | ||
<xacro:arg name="use_imu" default="false" /> | ||
<xacro:arg name="gz_control_config_package" default="" /> | ||
<xacro:arg name="gz_control_config_file_path" default="" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
今回の変更でこれらの引数は使用されていません。
機能追加時に引数を追加してください。
<xacro:arg name="use_gazebo" default="false" /> | |
<xacro:arg name="use_rgb_camera" default="false" /> | |
<xacro:arg name="use_line_sensor" default="false" /> | |
<xacro:arg name="use_lidar_urg" default="false" /> | |
<xacro:arg name="use_lidar_lds" default="false" /> | |
<xacro:arg name="use_lidar_rplidar" default="false" /> | |
<xacro:arg name="use_imu" default="false" /> | |
<xacro:arg name="gz_control_config_package" default="" /> | |
<xacro:arg name="gz_control_config_file_path" default="" /> |
self.use_gazebo = 'false' | ||
self.use_rgb_camera = 'false' | ||
self.use_line_sensor = 'false' | ||
self.use_lidar_urg = 'false' | ||
self.use_lidar_lds = 'false' | ||
self.use_lidar_rplidar = 'false' | ||
self.use_imu = 'false' | ||
self.gz_control_config_package = '' | ||
self.gz_control_config_file_path = '' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
これらの引数は今回の変更で使用されていないので削除お願いします。
get_package_share_directory('raspimouse_description'), | ||
'urdf', | ||
'raspimouse.urdf.xacro') | ||
self.use_gazebo = 'false' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
display.launch.pyでも使用されている引数、lidar
とlidar_frame
に対応してください。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
引数、lidarとlidar_frameのテストを追加してください。
引数lidarについては、"none", "urg", "lds", or "rplidar" が正しく反映されることを検証してください
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
diplay.launch.pyが動作すること確認できました。
テストも実行できており、良いと思います。
What does this implement/fix?
robot_description_loaderを実装しました。
Does this close any currently open issues?
しません。
How has this been tested?
pytestを実行してテストが通ることを確認しました。
Any other comments?
colcon test
が通るように空行を削除した箇所があります。Checklists