18 #ifndef MODE_FORWARD_HELPER_HPP
19 #define MODE_FORWARD_HELPER_HPP
29 template <u
int16_t ID,
typename TYPE, u
int16_t OBJ, u
int8_t SUB, u
int16_t CW_MASK>
32 std::shared_ptr<LelyDriverBridge> driver;
37 this->driver = driver;
39 virtual bool read(
const uint16_t & sw) {
return true; }
44 cw = cw.
get() | CW_MASK;
46 driver->universal_set_value<TYPE>(OBJ, SUB, this->
getTarget());
51 cw = cw.
get() & ~CW_MASK;
Definition: mode_forward_helper.hpp:31
virtual bool read(const uint16_t &sw)
Definition: mode_forward_helper.hpp:39
ModeForwardHelper(std::shared_ptr< LelyDriverBridge > driver)
Definition: mode_forward_helper.hpp:35
virtual bool write(Mode::OpModeAccesser &cw)
Definition: mode_forward_helper.hpp:40
Definition: mode_target_helper.hpp:37
bool hasTarget()
Definition: mode_target_helper.hpp:43
TYPE getTarget()
Definition: mode_target_helper.hpp:44
Definition: word_accessor.hpp:27
bool get(uint8_t bit) const
Definition: word_accessor.hpp:44
Definition: configuration_manager.hpp:28