Provides base class for payloads.
More...
#include <payload_base.hpp>
Provides base class for payloads.
Definition at line 44 of file payload_base.hpp.
◆ payloadBase()
packet_handler::payloadBase::payloadBase |
( |
const bool |
is_dynamic_ = false , |
|
|
const unsigned char |
length_ = 0 |
|
) |
| |
|
inline |
◆ ~payloadBase()
virtual packet_handler::payloadBase::~payloadBase |
( |
| ) |
|
|
inlinevirtual |
◆ buildBytes() [1/2]
template<>
void packet_handler::payloadBase::buildBytes |
( |
const float & |
V, |
|
|
ecl::PushAndPop< unsigned char > & |
buffer |
|
) |
| |
|
inlineprotected |
◆ buildBytes() [2/2]
template<typename T >
void packet_handler::payloadBase::buildBytes |
( |
const T & |
V, |
|
|
ecl::PushAndPop< unsigned char > & |
buffer |
|
) |
| |
|
inlineprotected |
◆ buildVariable() [1/2]
template<>
void packet_handler::payloadBase::buildVariable |
( |
float & |
V, |
|
|
ecl::PushAndPop< unsigned char > & |
buffer |
|
) |
| |
|
inlineprotected |
Need to be very careful with this - it will only work across platforms if they happen to be doing reinterpret_cast with the same float standard.
- Parameters
-
Definition at line 119 of file payload_base.hpp.
◆ buildVariable() [2/2]
template<typename T >
void packet_handler::payloadBase::buildVariable |
( |
T & |
V, |
|
|
ecl::PushAndPop< unsigned char > & |
buffer |
|
) |
| |
|
inlineprotected |
◆ deserialise()
virtual bool packet_handler::payloadBase::deserialise |
( |
ecl::PushAndPop< unsigned char > & |
byteStream | ) |
|
|
pure virtual |
Implemented in kobuki::CoreSensors, kobuki::GpInput, kobuki::Eeprom, kobuki::Inertia, kobuki::ControllerInfo, kobuki::Current, kobuki::ThreeAxisGyro, kobuki::UniqueDeviceID, kobuki::Cliff, kobuki::Firmware, kobuki::DockIR, and kobuki::Hardware.
◆ serialise()
virtual bool packet_handler::payloadBase::serialise |
( |
ecl::PushAndPop< unsigned char > & |
byteStream | ) |
|
|
pure virtual |
Implemented in kobuki::Command, kobuki::CoreSensors, kobuki::GpInput, kobuki::Current, kobuki::Eeprom, kobuki::ControllerInfo, kobuki::Inertia, kobuki::UniqueDeviceID, kobuki::Cliff, kobuki::Firmware, kobuki::ThreeAxisGyro, kobuki::DockIR, and kobuki::Hardware.
◆ is_dynamic
const bool packet_handler::payloadBase::is_dynamic |
it indicates the type of derived packet. if packet type is dynamic, length of packet can be changed during communication session. Ohterwise can not.
Definition at line 66 of file payload_base.hpp.
◆ length
const unsigned char packet_handler::payloadBase::length |
it indicates length of data part of packet, except header and length field. if packet is fixed type, this value should be matched with length field. if packet is dynamic type, this value indicates minimal value of length field.
Definition at line 73 of file payload_base.hpp.
◆ yes
bool packet_handler::payloadBase::yes |
this is simple magic to write the flag, when we get the packet from the host or when we want to send the data
Definition at line 60 of file payload_base.hpp.
The documentation for this class was generated from the following file: