We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac8fe91 commit bbd0e6dCopy full SHA for bbd0e6d
robotiq_hande_driver/hardware/include/robotiq_hande_driver/communication.hpp
@@ -72,9 +72,6 @@ struct CommunicationConfig {
72
* @brief This class wrappers the low level serial modubus communication with the gripper
73
*/
74
class Communication {
75
- static constexpr auto DEBUG_MODBUS = false;
76
- static constexpr auto FAILURE_MODBUS = -1;
77
-
78
public:
79
Communication();
80
@@ -124,6 +121,9 @@ class Communication {
124
121
private:
125
122
CommunicationConfig cfg_;
126
123
modbus_t* mb_;
+
+ static constexpr auto DEBUG_MODBUS = false;
+ static constexpr auto FAILURE_MODBUS = -1;
127
};
128
} // namespace robotiq_hande_driver
129
#endif // ROBOTIQ_HANDE_DRIVER__COMMUNICATION_HPP_
0 commit comments