SDRAngel  4.11.5
Developer docs for <a href="https://github.com/f4exb/sdrangel">SDRangel<\a>, an Open Source Qt5 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware.
Classes | Public Member Functions | Public Attributes | List of all members
TripleByteLE< T > Struct Template Reference

#include <decimators.h>

Classes

union  isample
 

Public Member Functions

 operator T () const
 

Public Attributes

uint8_t b0
 
uint8_t b1
 
uint8_t b2
 

Detailed Description

template<typename T>
struct TripleByteLE< T >

Definition at line 225 of file decimators.h.

Member Function Documentation

◆ operator T()

template<typename T >
TripleByteLE< T >::operator T ( ) const
inline

Definition at line 243 of file decimators.h.

243  {
244  isample s;
245  s.i0 = 0;
246  s.i1 = b0;
247  s.i2 = b1;
248  s.i3 = b2;
249  return s.i;
250  }
uint8_t b2
Definition: decimators.h:229
uint8_t b1
Definition: decimators.h:228
uint8_t i3
Definition: decimators.h:67
uint8_t i0
Definition: decimators.h:64
int32_t i
Definition: decimators.h:61
uint8_t i2
Definition: decimators.h:66
uint8_t i1
Definition: decimators.h:65
uint8_t b0
Definition: decimators.h:227

Member Data Documentation

◆ b0

template<typename T >
uint8_t TripleByteLE< T >::b0

Definition at line 227 of file decimators.h.

◆ b1

template<typename T >
uint8_t TripleByteLE< T >::b1

Definition at line 228 of file decimators.h.

◆ b2

template<typename T >
uint8_t TripleByteLE< T >::b2

Definition at line 229 of file decimators.h.


The documentation for this struct was generated from the following file: