|
Package Summary
Tags | No category tags. |
Version | 0.2.7 |
License | Apache-2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-industrial/ros2_canopen.git |
VCS Type | git |
VCS Version | humble |
Last Updated | 2023-11-04 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Christoph Hellmann Santos
Authors
ROS2 canopen {#mainpage}
Welcome to the ROS2 canopen documentation.
About
ROS2 CANopen is being developed and maintainted by the ROS-Industrial Consortium. The package heavily builds on top of Lely's canopen stack.
Getting started
Clone the ros2_canopen repository into your workspace's source directory and build:
git clone git@gitlab.cc-asp.fraunhofer.de:ipa326/ros-industrial/ros2_canopen.git
cd ..
colcon build
. install/setup.sh
Once built, you are ready to use the package but you need to setup the can interface.
Setting up your CANopen network configuration
In order to use the package for your CANopen network, you need to create a network configuration. We recommend the tools Lely CANopen provides for this (dcfgen). How to do this:
Gather the EDS files for the CANopen devices connected to your network and put them into a folder.
-
Create a yaml description of your network. Find an example below. Further options can be found and documentation of the yaml file structure can be found here. ROS2 canopen extends the slave description by the tag driver, which specifies the driver to be used for the specific device. The driver is later loaded using pluginlib.
master: node_id: 1 motioncontroller_1: node_id: 2 dcf: "simple.eds" driver: "BasicDevice"
-
Generate a master.dcf file using Lely CANopen's dcfgen tool. This outputs a master.dcf.
dcfgen -r [path to yaml file]
-
Create a ROS parameters YAML file setting the path to your created dcf and yaml file:
canopen_master: ros__parameters: dcf_path: [Absolute path to your master dcf] yaml_path: [Absolute path to your bus yaml] can_interface_name: [interface name]
ROS2 canopen (preliminary)
1.
ros2 launch bring_up_master.launch.py parameter_file_path:=[Path to your config yaml]
-
Set configuration files and can interface. sh
ros2 param set /canopen_master/dcf_path [path to dcf] ros2 param set /canopen_master/yaml_path [path to yaml] ros2 param set /canopen_master/can_interface_name [if_name]
-
Now you can configure the canopen_master via lifecycle management. The master will now load the configuration files and spawn the necessary driver nodes for each device on the network. You can check the new nodes with ros2 node command.
ros2 lifecycle set /canopen_master configure ros2 node list
Configure all driver nodes with lifecycle management
Activate canopen_master node and then all driver nodes.
The system should now be running and you should be able to use the driver nodes to communicate with your devices.
Changelog for package canopen_core
0.2.7 (2023-06-30)
- Add missing license headers and activate ament_copyright
- Fix maintainer naming
- Contributors: Christoph Hellmann Santos
0.2.6 (2023-06-24)
0.2.5 (2023-06-23)
0.2.4 (2023-06-22)
0.2.3 (2023-06-22)
0.2.2 (2023-06-21)
0.2.1 (2023-06-21)
- Fix master and driver lifecycle
- Fix QoS build warning in canopen_core
- Use consistenlty HEX output for NodeID and Index.
- Contributors: Christoph Hellmann Santos, Denis
Wiki Tutorials
Source Tutorials
Package Dependencies
Deps | Name | |
---|---|---|
1 | ament_cmake | |
1 | ament_lint_auto | |
1 | canopen_interfaces | |
1 | lely_core_libraries | |
1 | lifecycle_msgs | |
1 | rclcpp | |
1 | rclcpp_components | |
1 | rclcpp_lifecycle | |
1 | yaml_cpp_vendor |
System Dependencies
Name |
---|
boost |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged canopen_core at answers.ros.org
|
Package Summary
Tags | No category tags. |
Version | 0.0.1 |
License | Apache-2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-industrial/ros2_canopen.git |
VCS Type | git |
VCS Version | iron |
Last Updated | 2023-06-06 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- christoph
Authors
ROS2 canopen {#mainpage}
Welcome to the ROS2 canopen documentation.
About
ROS2 CANopen is being developed and maintainted by the ROS-Industrial Consortium. The package heavily builds on top of Lely's canopen stack.
Getting started
Clone the ros2_canopen repository into your workspace's source directory and build:
git clone git@gitlab.cc-asp.fraunhofer.de:ipa326/ros-industrial/ros2_canopen.git
cd ..
colcon build
. install/setup.sh
Once built, you are ready to use the package but you need to setup the can interface.
Setting up your CANopen network configuration
In order to use the package for your CANopen network, you need to create a network configuration. We recommend the tools Lely CANopen provides for this (dcfgen). How to do this:
Gather the EDS files for the CANopen devices connected to your network and put them into a folder.
-
Create a yaml description of your network. Find an example below. Further options can be found and documentation of the yaml file structure can be found here. ROS2 canopen extends the slave description by the tag driver, which specifies the driver to be used for the specific device. The driver is later loaded using pluginlib.
master: node_id: 1 motioncontroller_1: node_id: 2 dcf: "simple.eds" driver: "BasicDevice"
-
Generate a master.dcf file using Lely CANopen's dcfgen tool. This outputs a master.dcf.
dcfgen -r [path to yaml file]
-
Create a ROS parameters YAML file setting the path to your created dcf and yaml file:
canopen_master: ros__parameters: dcf_path: [Absolute path to your master dcf] yaml_path: [Absolute path to your bus yaml] can_interface_name: [interface name]
ROS2 canopen (preliminary)
1.
ros2 launch bring_up_master.launch.py parameter_file_path:=[Path to your config yaml]
-
Set configuration files and can interface. sh
ros2 param set /canopen_master/dcf_path [path to dcf] ros2 param set /canopen_master/yaml_path [path to yaml] ros2 param set /canopen_master/can_interface_name [if_name]
-
Now you can configure the canopen_master via lifecycle management. The master will now load the configuration files and spawn the necessary driver nodes for each device on the network. You can check the new nodes with ros2 node command.
ros2 lifecycle set /canopen_master configure ros2 node list
Configure all driver nodes with lifecycle management
Activate canopen_master node and then all driver nodes.
The system should now be running and you should be able to use the driver nodes to communicate with your devices.
Wiki Tutorials
Source Tutorials
Package Dependencies
Deps | Name | |
---|---|---|
1 | ament_cmake | |
1 | ament_lint_auto | |
1 | canopen_interfaces | |
1 | lely_core_libraries | |
1 | lifecycle_msgs | |
1 | rclcpp | |
1 | rclcpp_components | |
1 | rclcpp_lifecycle | |
1 | yaml_cpp_vendor |
System Dependencies
Name |
---|
boost |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged canopen_core at answers.ros.org
|
Package Summary
Tags | No category tags. |
Version | 0.2.7 |
License | Apache-2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-industrial/ros2_canopen.git |
VCS Type | git |
VCS Version | master |
Last Updated | 2023-11-22 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Christoph Hellmann Santos
Authors
ROS2 canopen {#mainpage}
Welcome to the ROS2 canopen documentation.
About
ROS2 CANopen is being developed and maintainted by the ROS-Industrial Consortium. The package heavily builds on top of Lely's canopen stack.
Getting started
Clone the ros2_canopen repository into your workspace's source directory and build:
git clone git@gitlab.cc-asp.fraunhofer.de:ipa326/ros-industrial/ros2_canopen.git
cd ..
colcon build
. install/setup.sh
Once built, you are ready to use the package but you need to setup the can interface.
Setting up your CANopen network configuration
In order to use the package for your CANopen network, you need to create a network configuration. We recommend the tools Lely CANopen provides for this (dcfgen). How to do this:
Gather the EDS files for the CANopen devices connected to your network and put them into a folder.
-
Create a yaml description of your network. Find an example below. Further options can be found and documentation of the yaml file structure can be found here. ROS2 canopen extends the slave description by the tag driver, which specifies the driver to be used for the specific device. The driver is later loaded using pluginlib.
master: node_id: 1 motioncontroller_1: node_id: 2 dcf: "simple.eds" driver: "BasicDevice"
-
Generate a master.dcf file using Lely CANopen's dcfgen tool. This outputs a master.dcf.
dcfgen -r [path to yaml file]
-
Create a ROS parameters YAML file setting the path to your created dcf and yaml file:
canopen_master: ros__parameters: dcf_path: [Absolute path to your master dcf] yaml_path: [Absolute path to your bus yaml] can_interface_name: [interface name]
ROS2 canopen (preliminary)
1.
ros2 launch bring_up_master.launch.py parameter_file_path:=[Path to your config yaml]
-
Set configuration files and can interface. sh
ros2 param set /canopen_master/dcf_path [path to dcf] ros2 param set /canopen_master/yaml_path [path to yaml] ros2 param set /canopen_master/can_interface_name [if_name]
-
Now you can configure the canopen_master via lifecycle management. The master will now load the configuration files and spawn the necessary driver nodes for each device on the network. You can check the new nodes with ros2 node command.
ros2 lifecycle set /canopen_master configure ros2 node list
Configure all driver nodes with lifecycle management
Activate canopen_master node and then all driver nodes.
The system should now be running and you should be able to use the driver nodes to communicate with your devices.
Changelog for package canopen_core
0.2.7 (2023-06-30)
- Add missing license headers and activate ament_copyright
- Fix maintainer naming
- Contributors: Christoph Hellmann Santos
0.2.6 (2023-06-24)
0.2.5 (2023-06-23)
0.2.4 (2023-06-22)
0.2.3 (2023-06-22)
0.2.2 (2023-06-21)
0.2.1 (2023-06-21)
- Fix master and driver lifecycle
- Fix QoS build warning in canopen_core
- Use consistenlty HEX output for NodeID and Index.
- Contributors: Christoph Hellmann Santos, Denis
Wiki Tutorials
Source Tutorials
Package Dependencies
Deps | Name | |
---|---|---|
1 | ament_cmake | |
1 | ament_lint_auto | |
1 | canopen_interfaces | |
1 | lely_core_libraries | |
1 | lifecycle_msgs | |
1 | rclcpp | |
1 | rclcpp_components | |
1 | rclcpp_lifecycle | |
1 | yaml_cpp_vendor |
System Dependencies
Name |
---|
boost |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged canopen_core at answers.ros.org
|
Package Summary
Tags | No category tags. |
Version | 0.0.1 |
License | Apache-2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-industrial/ros2_canopen.git |
VCS Type | git |
VCS Version | galactic |
Last Updated | 2023-06-06 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- christoph
Authors
ROS2 canopen {#mainpage}
Welcome to the ROS2 canopen documentation.
About
ROS2 CANopen is being developed and maintainted by the ROS-Industrial Consortium. The package heavily builds ontop of Lely's canopen stack.
Getting started
Clone the ros2_canopen repository into your workspace's source directory and build:
git clone git@gitlab.cc-asp.fraunhofer.de:ipa326/ros-industrial/ros2_canopen.git
cd ..
colcon build
. install/setup.sh
Once built, you are ready to use the package but you need to setup the can interface.
Setting up your CANopen network configuration
In order to use the package for your CANopen network, you need to create a network configuration. We recommend the tools Lely CANopen provides for this (dcfgen). How to do this:
Gather the EDS files for the CANopen devices connected to your network and put them into a folder.
-
Create a yaml description of your network. Find an example below. Further options can be found and documentation of the yaml file structure can be found here. ROS2 canopen extends the slave description by the tag driver, which specifies the driver to be used for the specific device. The driver is later loaded using pluginlib.
master: node_id: 1 motioncontroller_1: node_id: 2 dcf: "simple.eds" driver: "BasicDevice"
-
Generate a master.dcf file using Lely CANopen's dcfgen tool. This outputs a master.dcf.
dcfgen -r [path to yaml file]
-
Create a ROS parameters YAML file setting the path to your created dcf and yaml file:
canopen_master: ros__parameters: dcf_path: [Absolute path to your master dcf] yaml_path: [Absolute path to your bus yaml] can_interface_name: [interface name]
ROS2 canopen (preliminary)
ros2 launch bring_up_master.launch.py parameter_file_path:=[Path to your config yaml]
-
Set configuration files and can interface. sh
ros2 param set /canopen_master/dcf_path [path to dcf] ros2 param set /canopen_master/yaml_path [path to yaml] ros2 param set /canopen_master/can_interface_name [if_name]
-
Now you can configure the canopen_master via lifecycle management. The master will now load the configuration files and spawn the necessary driver nodes for each device on the network. You can check the new nodes with ros2 node command.
ros2 lifecycle set /canopen_master configure ros2 node list
Configure all driver nodes with lifecycle management
Activate canopen_master node and then all driver nodes.
The system should now be running and you should be able to use the driver nodes to communicate with your devices.
Wiki Tutorials
Source Tutorials
Package Dependencies
Deps | Name | |
---|---|---|
1 | ament_cmake | |
1 | ament_lint_auto | |
1 | lely_core_libraries | |
1 | rclcpp | |
1 | rclcpp_components | |
1 | yaml_cpp_vendor | |
1 | canopen_interfaces | |
1 | rclcpp_lifecycle | |
1 | lifecycle_msgs |
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged canopen_core at answers.ros.org
|
Package Summary
Tags | No category tags. |
Version | 0.0.1 |
License | Apache-2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-industrial/ros2_canopen.git |
VCS Type | git |
VCS Version | foxy |
Last Updated | 2023-06-06 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- christoph
Authors
ROS2 canopen {#mainpage}
Welcome to the ROS2 canopen documentation.
About
ROS2 CANopen is being developed and maintainted by the ROS-Industrial Consortium. The package heavily builds ontop of Lely's canopen stack.
Getting started
Clone the ros2_canopen repository into your workspace's source directory and build:
git clone git@gitlab.cc-asp.fraunhofer.de:ipa326/ros-industrial/ros2_canopen.git
cd ..
colcon build
. install/setup.sh
Once built, you are ready to use the package but you need to setup the can interface.
Setting up your CANopen network configuration
In order to use the package for your CANopen network, you need to create a network configuration. We recommend the tools Lely CANopen provides for this (dcfgen). How to do this:
Gather the EDS files for the CANopen devices connected to your network and put them into a folder.
-
Create a yaml description of your network. Find an example below. Further options can be found and documentation of the yaml file structure can be found here. ROS2 canopen extends the slave description by the tag driver, which specifies the driver to be used for the specific device. The driver is later loaded using pluginlib.
master: node_id: 1 motioncontroller_1: node_id: 2 dcf: "simple.eds" driver: "BasicDevice"
-
Generate a master.dcf file using Lely CANopen's dcfgen tool. This outputs a master.dcf.
dcfgen -r [path to yaml file]
-
Create a ROS parameters YAML file setting the path to your created dcf and yaml file:
canopen_master: ros__parameters: dcf_path: [Absolute path to your master dcf] yaml_path: [Absolute path to your bus yaml] can_interface_name: [interface name]
ROS2 canopen (preliminary)
ros2 launch bring_up_master.launch.py parameter_file_path:=[Path to your config yaml]
-
Set configuration files and can interface. sh
ros2 param set /canopen_master/dcf_path [path to dcf] ros2 param set /canopen_master/yaml_path [path to yaml] ros2 param set /canopen_master/can_interface_name [if_name]
-
Now you can configure the canopen_master via lifecycle management. The master will now load the configuration files and spawn the necessary driver nodes for each device on the network. You can check the new nodes with ros2 node command.
ros2 lifecycle set /canopen_master configure ros2 node list
Configure all driver nodes with lifecycle management
Activate canopen_master node and then all driver nodes.
The system should now be running and you should be able to use the driver nodes to communicate with your devices.
Wiki Tutorials
Source Tutorials
Package Dependencies
Deps | Name | |
---|---|---|
1 | ament_cmake | |
1 | ament_lint_auto | |
1 | lely_core_libraries | |
1 | rclcpp | |
1 | rclcpp_components | |
1 | yaml_cpp_vendor | |
1 | canopen_interfaces | |
1 | rclcpp_lifecycle | |
1 | lifecycle_msgs |