ros_canopen Homing method AccessType
Hi,
The Homing method (object 0x6098) AccessType is usually defined as "RW" in documentations for read and write permission, and sometimes written "rww" in EDS/DCF files when it can be mapped to a PDO:
AccessType=rww
I have a working setup using ros_canopen and two maxon EPOS4 controllers. To get it working I had to change the Homing method AccessType to "const" in my DCF files:
AccessType=const
When I execute my launch file using Homing method default AccessType "rww", I have the following error:
abort6098#0, reason: Invalid value for parameter (download only).
Could not process message
Referring to another post showing examples, there is an example where the Homing method AccessType is "const", and another example where it is "rw".
As I don't have access to those robot hardware, does anybody knows whether or not those 2 example are working properly, and more generally, is it intended to have to modify the AccessType to "const" ?
Ideally I would like to keep my original DCF file unchanged to reflect exactly my controllers, and only change parameters from the ROS config files. Modifying the DCF file seems not the right way to do and it can become difficult or impossible to use the file to restore the controller parameters using the manufacturer tools.
Many thanks!