45   , m_variable_index(variable_index)
    47   m_writer_ptr = std::make_shared<sick::data_processing::ReadWriteHelper>();
    53   uint16_t prevSize = telegram.size();
    54   telegram.resize(prevSize + 2);
    55   uint8_t* data_ptr = telegram.data() + prevSize;
    69     ROS_INFO(
"Command Variable Acknowledged.");
    74     ROS_WARN(
"Command Variable Not Accepted.");
 uint16_t getVariableIndex() const 
 
uint8_t getCommandType() const 
Returns the command type. 
 
void addTelegramData(sick::datastructure::PacketBuffer::VectorBuffer &telegram) const 
Adds the data to the telegram. 
 
Base class for commands. Defines the base interface and does the common tasks. 
 
VariableCommand(Cola2Session &session, const uint16_t &method_index)
Constructor of the command. 
 
bool processReply()
Processes the return from the sensor. 
 
uint8_t getCommandMode() const 
Returns the command mode. 
 
std::shared_ptr< sick::data_processing::ReadWriteHelper > m_writer_ptr
 
bool canBeExecutedWithoutSessionID() const 
Returns if the command can be executed without a session ID. Will return false for most commands exce...
 
uint16_t m_variable_index
 
void setVariableIndex(const uint16_t &variable_index)
 
std::vector< uint8_t > VectorBuffer
Typedef for a vector buffer, to sort the incoming packets. 
 
Establishes a cola2 session with a sensor and enables execution of commands in this session...