HAN-FUN API  1.5.3
This project provides the common implementation of ULE Alliance's HAN-FUN application protocol.

This module contains the classes implementing the available UID for HAN-FUN devices. More...

+ Collaboration diagram for UIDs:

Data Structures

struct  HF::UID::UID_T
 API for all UIDs. More...
 
struct  HF::UID::Abstract< _type >
 Helper template parent class for all UID's implementation. More...
 
struct  HF::UID::NONE
 This class represents an empty UID. More...
 
class  HF::UID::ByteArray< _Class, _size, _type >
 Helper template parent class for all UIDs based on fixed number of bytes. More...
 
struct  HF::UID::DECT
 DECT UID class. More...
 
struct  HF::UID::MAC
 IEEE MAC-48b UID class. More...
 
struct  HF::UID::URI
 URI UID class. More...
 
class  HF::UID::UID
 Wrapper around UID_T pointer's. More...
 

Enumerations

enum  HF::UID::Type { HF::UID::NONE_UID = 0x00, HF::UID::DECT_UID = 0x01, HF::UID::MAC_UID = 0x02, HF::UID::URI_UID = 0x03 }
 Types of UIDs available. More...
 

Functions

std::ostream & operator<< (std::ostream &stream, const HF::UID::UID &uid)
 Convert the given uid into a string and write it to the given stream. More...
 

Detailed Description

This module contains the classes implementing the available UID for HAN-FUN devices.

Enumeration Type Documentation

◆ Type

Types of UIDs available.

Enumerator
NONE_UID 

Empty UID.

DECT_UID 

RFPI or IPUI.

MAC_UID 

Media Access Control (IEEE-MAC-48)

URI_UID 

Uniform Resource Identifier.

Definition at line 42 of file uids.h.

43  {
44  NONE_UID = 0x00,
45  DECT_UID = 0x01,
46  MAC_UID = 0x02,
47  URI_UID = 0x03,
48  } Type;
Media Access Control (IEEE-MAC-48)
Definition: uids.h:46
Type
Types of UIDs available.
Definition: uids.h:42
RFPI or IPUI.
Definition: uids.h:45
Uniform Resource Identifier.
Definition: uids.h:47
Empty UID.
Definition: uids.h:44

Function Documentation

◆ operator<<()

std::ostream& operator<< ( std::ostream &  stream,
const HF::UID::UID uid 
)

Convert the given uid into a string and write it to the given stream.

Parameters
[in]streamout stream to write the string to.
[in]uiddevice UID to convert to a string.
Returns
stream