You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I having trouble with the ro2 control issue. It repeat the same error.
[gzserver-1] [INFO] [1733571413.941938155] [joint_state_broadcaster]: 'joints' or 'interfaces' parameter is empty. All available state interfaces will be published
[gzserver-1] [ERROR] [1733571413.961346237] [resource_manager]: Not acceptable command interfaces combination:
My launch file
#!/usr/bin/env python3
import os
from launch import LaunchDescription
from launch.actions import IncludeLaunchDescription, DeclareLaunchArgument, SetEnvironmentVariable, ExecuteProcess
from launch.launch_description_sources import PythonLaunchDescriptionSource
from launch_ros.actions import Node
from launch.substitutions import Command, LaunchConfiguration
from launch_ros.parameter_descriptions import ParameterValue
from ament_index_python.packages import get_package_share_directory
def generate_launch_description():
# Set GAZEBO_MODEL_PATH for custom models
gazebo_model_path = os.path.join(
get_package_share_directory("exo_model"), "models"
)
gazebo_env = SetEnvironmentVariable(
"GAZEBO_MODEL_PATH", gazebo_model_path
)
I having trouble with the ro2 control issue. It repeat the same error.
[gzserver-1] [INFO] [1733571413.941938155] [joint_state_broadcaster]: 'joints' or 'interfaces' parameter is empty. All available state interfaces will be published
[gzserver-1] [ERROR] [1733571413.961346237] [resource_manager]: Not acceptable command interfaces combination:
My launch file
#!/usr/bin/env python3
import os
from launch import LaunchDescription
from launch.actions import IncludeLaunchDescription, DeclareLaunchArgument, SetEnvironmentVariable, ExecuteProcess
from launch.launch_description_sources import PythonLaunchDescriptionSource
from launch_ros.actions import Node
from launch.substitutions import Command, LaunchConfiguration
from launch_ros.parameter_descriptions import ParameterValue
from ament_index_python.packages import get_package_share_directory
def generate_launch_description():
# Set GAZEBO_MODEL_PATH for custom models
gazebo_model_path = os.path.join(
get_package_share_directory("exo_model"), "models"
)
gazebo_env = SetEnvironmentVariable(
"GAZEBO_MODEL_PATH", gazebo_model_path
)
The yaml file
controller_manager
ros__parameters:
update_rate: 100
joint_trajectory_controller:
ros__parameters:
joints:
- Joint_2
- Joint_3
- Joint_4
- Joint_5
interface_name: position
command_interfaces:
- position
state_interfaces:
- position
-velocity
The text was updated successfully, but these errors were encountered: