18 #ifndef CANOPEN_402_DRIVER_COMMAND_HPP
19 #define CANOPEN_402_DRIVER_COMMAND_HPP
21 #include <boost/container/flat_map.hpp>
34 Op(uint16_t to_set, uint16_t to_reset) : to_set_(to_set), to_reset_(to_reset) {}
35 void operator()(uint16_t & val)
const { val = (val & ~to_reset_) | to_set_; }
39 boost::container::flat_map<std::pair<State402::InternalState, State402::InternalState>, Op>
43 transitions_.insert(std::make_pair(std::make_pair(from, to), op));
50 return transitions_.at(std::make_pair(from, to));
53 static const TransitionTable transitions_;
Definition: command.hpp:29
ControlWord
Definition: command.hpp:59
@ CW_Quick_Stop
Definition: command.hpp:62
@ CW_Operation_mode_specific3
Definition: command.hpp:69
@ CW_Switch_On
Definition: command.hpp:60
@ CW_Manufacturer_specific1
Definition: command.hpp:72
@ CW_Operation_mode_specific1
Definition: command.hpp:65
@ CW_Manufacturer_specific2
Definition: command.hpp:73
@ CW_Manufacturer_specific0
Definition: command.hpp:71
@ CW_Operation_mode_specific0
Definition: command.hpp:64
@ CW_Operation_mode_specific2
Definition: command.hpp:66
@ CW_Manufacturer_specific4
Definition: command.hpp:75
@ CW_Enable_Operation
Definition: command.hpp:63
@ CW_Fault_Reset
Definition: command.hpp:67
@ CW_Enable_Voltage
Definition: command.hpp:61
@ CW_Manufacturer_specific3
Definition: command.hpp:74
@ CW_Halt
Definition: command.hpp:68
static bool setTransition(uint16_t &cw, const State402::InternalState &from, const State402::InternalState &to, State402::InternalState *next)
InternalState
Definition: state.hpp:50
Definition: configuration_manager.hpp:28