RDK Documentation (Open Sourced RDK Components)

Description

Macros

#define dsHAL_APIVER(major, minor)   (uint32_t)((major << 16) | (minor & 0xFFFF))
 
#define dsHAL_APIVER_MAJOR(x)   ((x) >> 16) & (0x7FFF)
 
#define dsHAL_APIVER_MINOR(x)   (x & 0xFFFF)
 

Macro Definition Documentation

◆ dsHAL_APIVER

#define dsHAL_APIVER (   major,
  minor 
)    (uint32_t)((major << 16) | (minor & 0xFFFF))

Return 4 Bytes version value

Definition at line 1157 of file dsTypes.h.

◆ dsHAL_APIVER_MAJOR

#define dsHAL_APIVER_MAJOR (   x)    ((x) >> 16) & (0x7FFF)

Return the two Most Significant Byte value

Definition at line 1159 of file dsTypes.h.

◆ dsHAL_APIVER_MINOR

#define dsHAL_APIVER_MINOR (   x)    (x & 0xFFFF)

Return the two Least Significant Byte value

Definition at line 1161 of file dsTypes.h.