ros2_canopen  master
C++ ROS CANopen Library
homing_mode.hpp
Go to the documentation of this file.
1 // Copyright 2023 Christoph Hellmann Santos
2 // Copyright 2014-2022 Authors of ros_canopen
3 //
4 // This program is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
13 //
14 // You should have received a copy of the GNU General Public License
15 // along with this program. If not, see <https://www.gnu.org/licenses/>.
16 //
17 
18 #ifndef HOMING_MODE_HPP
19 #define HOMING_MODE_HPP
20 #include "base.hpp"
21 #include "mode.hpp"
22 
23 namespace ros2_canopen
24 {
25 class HomingMode : public Mode
26 {
27 protected:
28  enum SW_bits
29  {
32  };
33  enum CW_bits
34  {
36  };
37 
38 public:
39  HomingMode() : Mode(MotorBase::Homing) {}
40  virtual bool executeHoming() = 0;
41 };
42 } // namespace ros2_canopen
43 
44 #endif // HOMING_MODE_HPP
@ CW_Operation_mode_specific0
Definition: command.hpp:64
Definition: homing_mode.hpp:26
CW_bits
Definition: homing_mode.hpp:34
@ CW_StartHoming
Definition: homing_mode.hpp:35
SW_bits
Definition: homing_mode.hpp:29
@ SW_Error
Definition: homing_mode.hpp:31
@ SW_Attained
Definition: homing_mode.hpp:30
HomingMode()
Definition: homing_mode.hpp:39
virtual bool executeHoming()=0
Definition: mode.hpp:30
Motor Base Class.
Definition: base.hpp:32
@ SW_Operation_mode_specific0
Definition: state.hpp:44
@ SW_Operation_mode_specific1
Definition: state.hpp:45
Definition: configuration_manager.hpp:28