#include "interface.h"
#include "filter.h"
#include <sstream>
Go to the source code of this file.
|
std::string | can::buffer2hex (const std::string &in, bool lc) |
|
std::string | can::byte2hex (const uint8_t &d, bool pad, bool lc) |
|
bool | can::dec2hex (char &h, const uint8_t &d, bool lc) |
|
bool | can::hex2buffer (std::string &out, const std::string &in_raw, bool pad) |
|
bool | can::hex2dec (uint8_t &d, const char &h) |
|
std::ostream & | can::operator<< (std::ostream &stream, const Frame &f) |
|
std::ostream & | can::operator<< (std::ostream &stream, const Header &h) |
|
FrameFilterSharedPtr | can::tofilter (const char *s) |
|
template<> |
FrameFilterSharedPtr | can::tofilter (const std::string &s) |
|
template<class T > |
FrameFilterSharedPtr | can::tofilter (const T &ct) |
|
template<> |
FrameFilterSharedPtr | can::tofilter (const uint32_t &id) |
|
template<typename T > |
FilteredFrameListener::FilterVector | can::tofilters (const T &v) |
|
Frame | can::toframe (const std::string &s) |
|
Header | can::toheader (const std::string &s) |
|
std::string | can::tostring (const Frame &f, bool lc) |
|
std::string | can::tostring (const Header &h, bool lc) |
|