Keeps track of which class and message IDs can be decoded by a given message type.
More...
#include <serialization.h>
|
static void | addKey (uint8_t class_id, uint8_t message_id) |
| Indicate that this message type can decode u-blox messages with the given ID. More...
|
|
static bool | canDecode (uint8_t class_id, uint8_t message_id) |
| Can this message type decode a u-blox message with the given ID? More...
|
|
|
static std::vector< std::pair< uint8_t, uint8_t > > | keys_ |
|
template<typename T>
class ublox::Message< T >
Keeps track of which class and message IDs can be decoded by a given message type.
Definition at line 103 of file serialization.h.
template<typename T >
static void ublox::Message< T >::addKey |
( |
uint8_t |
class_id, |
|
|
uint8_t |
message_id |
|
) |
| |
|
inlinestatic |
Indicate that this message type can decode u-blox messages with the given ID.
- Parameters
-
class_id | the class ID of the u-blox message |
message_id | the message ID of the u-blox message |
Definition at line 122 of file serialization.h.
template<typename T >
static bool ublox::Message< T >::canDecode |
( |
uint8_t |
class_id, |
|
|
uint8_t |
message_id |
|
) |
| |
|
inlinestatic |
Can this message type decode a u-blox message with the given ID?
- Parameters
-
class_id | the class ID of the u-blox message |
message_id | the message ID of the u-blox message |
- Returns
- whether or not this message type decode the u-blox message
Definition at line 111 of file serialization.h.
The documentation for this class was generated from the following file: