- 
                Notifications
    
You must be signed in to change notification settings  - Fork 12
 
Added Dynamixel Y error code handling logic #65
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
          
     Merged
      
      
    
  
     Merged
                    Changes from 21 commits
      Commits
    
    
            Show all changes
          
          
            22 commits
          
        
        Select commit
          Hold shift + click to select a range
      
      5fe935a
              
                feat: Enhance ProcessDirectReadData to handle item names for specific…
              
              
                Woojin-Crive 3dc9b00
              
                feat: Introduce unit and sign type handling in DynamixelInfo and upda…
              
              
                Woojin-Crive bba2456
              
                feat: Introduce error handling for Dynamixel Y
              
              
                Woojin-Crive 89ad779
              
                refactor: Remove torque_constant handling from DynamixelInfo structur…
              
              
                Woojin-Crive 9b25da6
              
                refactor: Replace std::cout with RCLCPP logging for torque state chan…
              
              
                Woojin-Crive d8b7687
              
                refactor: Update CMake configuration and improve type safety in Dynam…
              
              
                Woojin-Crive a3a5325
              
                chore: Update package.xml to include ros2_control_cmake as a build de…
              
              
                Woojin-Crive 8469698
              
                chore: Simplify CMake project declaration by removing unnecessary lan…
              
              
                Woojin-Crive db3dd4e
              
                refactor: Remove Profile Acceleration Time and Profile Time from mult…
              
              
                Woojin-Crive 5697918
              
                refactor: Remove Profile Time from multiple Dynamixel model files
              
              
                Woojin-Crive fa57a41
              
                refactor: Improve error logging formatting and consistency in Dynamix…
              
              
                Woojin-Crive f35f3ea
              
                refactor: Enhance code readability by improving formatting and consis…
              
              
                Woojin-Crive f60627c
              
                refactor: Integrate compiler option macros and GCC version detection …
              
              
                Woojin-Crive e927501
              
                refactor: Remove ros2_control_cmake subproject from the repository
              
              
                Woojin-Crive 9ca2fa3
              
                refactor: Remove ros2_control_cmake build dependency from package.xml
              
              
                Woojin-Crive 433071d
              
                refactor: Replace hardware_interface dependency with variable referen…
              
              
                Woojin-Crive 0e5cf24
              
                refactor: Simplify CMake configuration by removing deprecated macros …
              
              
                Woojin-Crive 67c4dab
              
                refactor: Update CMake installation paths for improved clarity and or…
              
              
                Woojin-Crive 152a338
              
                refactor: Improve error logging formatting and consistency in Dynamix…
              
              
                Woojin-Crive 2fd4c4b
              
                refactor: Update item comparison logic in Dynamixel read/write type c…
              
              
                Woojin-Crive 73687aa
              
                chore: Update version to 1.4.10 and add new features in CHANGELOG
              
              
                Woojin-Crive ccb8c01
              
                refactor: Remove unused UnitItem struct from dynamixel_info.hpp to st…
              
              
                Woojin-Crive File filter
Filter by extension
Conversations
          Failed to load comments.   
        
        
          
      Loading
        
  Jump to
        
          Jump to file
        
      
      
          Failed to load files.   
        
        
          
      Loading
        
  Diff view
Diff view
There are no files selected for viewing
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| 
          
            
          
           | 
    @@ -2,7 +2,7 @@ | |
| <?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
| <package format="3"> | ||
| <name>dynamixel_hardware_interface</name> | ||
| <version>1.4.9</version> | ||
| <version>1.4.10</version> | ||
| <description> | ||
| ROS 2 package providing a hardware interface for controlling Dynamixel motors via the ROS 2 control framework. | ||
| </description> | ||
| 
        
          
        
         | 
    @@ -12,16 +12,20 @@ | |
| <author email="[email protected]">Sungho Woo</author> | ||
| <author email="[email protected]">Woojin Wie</author> | ||
| <author email="[email protected]">Wonho Yun</author> | ||
| 
     | 
||
| <buildtool_depend>ament_cmake</buildtool_depend> | ||
| 
     | 
||
| <depend>rclcpp</depend> | ||
| <depend>hardware_interface</depend> | ||
| <depend>pluginlib</depend> | ||
| <depend>realtime_tools</depend> | ||
| <depend>dynamixel_sdk</depend> | ||
| <depend>std_srvs</depend> | ||
| <depend>dynamixel_interfaces</depend> | ||
| 
     | 
||
| <test_depend>ament_lint_auto</test_depend> | ||
| <test_depend>ament_lint_common</test_depend> | ||
| 
     | 
||
| <export> | ||
| <build_type>ament_cmake</build_type> | ||
| </export> | ||
| 
          
            
          
           | 
    ||
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
              
      
      Oops, something went wrong.
        
    
  
      
      Oops, something went wrong.
        
    
  
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
Uh oh!
There was an error while loading. Please reload this page.