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.
Public Member Functions | Private Attributes | List of all members
SWGSDRangel::SWGLimeSdrInputReport Class Reference

#include <SWGLimeSdrInputReport.h>

+ Inheritance diagram for SWGSDRangel::SWGLimeSdrInputReport:
+ Collaboration diagram for SWGSDRangel::SWGLimeSdrInputReport:

Public Member Functions

 SWGLimeSdrInputReport ()
 
 SWGLimeSdrInputReport (QString *json)
 
virtual ~SWGLimeSdrInputReport ()
 
void init ()
 
void cleanup ()
 
virtual QString asJson () override
 
virtual QJsonObject * asJsonObject () override
 
virtual void fromJsonObject (QJsonObject &json) override
 
virtual SWGLimeSdrInputReportfromJson (QString &jsonString) override
 
qint32 getSuccess ()
 
void setSuccess (qint32 success)
 
qint32 getStreamActive ()
 
void setStreamActive (qint32 stream_active)
 
qint32 getFifoSize ()
 
void setFifoSize (qint32 fifo_size)
 
qint32 getFifoFill ()
 
void setFifoFill (qint32 fifo_fill)
 
qint32 getUnderrunCount ()
 
void setUnderrunCount (qint32 underrun_count)
 
qint32 getOverrunCount ()
 
void setOverrunCount (qint32 overrun_count)
 
qint32 getDroppedPacketsCount ()
 
void setDroppedPacketsCount (qint32 dropped_packets_count)
 
float getLinkRate ()
 
void setLinkRate (float link_rate)
 
qint32 getHwTimestamp ()
 
void setHwTimestamp (qint32 hw_timestamp)
 
float getTemperature ()
 
void setTemperature (float temperature)
 
qint32 getGpioDir ()
 
void setGpioDir (qint32 gpio_dir)
 
qint32 getGpioPins ()
 
void setGpioPins (qint32 gpio_pins)
 
virtual bool isSet () override
 
- Public Member Functions inherited from SWGSDRangel::SWGObject
virtual ~SWGObject ()
 

Private Attributes

qint32 success
 
bool m_success_isSet
 
qint32 stream_active
 
bool m_stream_active_isSet
 
qint32 fifo_size
 
bool m_fifo_size_isSet
 
qint32 fifo_fill
 
bool m_fifo_fill_isSet
 
qint32 underrun_count
 
bool m_underrun_count_isSet
 
qint32 overrun_count
 
bool m_overrun_count_isSet
 
qint32 dropped_packets_count
 
bool m_dropped_packets_count_isSet
 
float link_rate
 
bool m_link_rate_isSet
 
qint32 hw_timestamp
 
bool m_hw_timestamp_isSet
 
float temperature
 
bool m_temperature_isSet
 
qint32 gpio_dir
 
bool m_gpio_dir_isSet
 
qint32 gpio_pins
 
bool m_gpio_pins_isSet
 

Detailed Description

Definition at line 31 of file SWGLimeSdrInputReport.h.

Constructor & Destructor Documentation

◆ SWGLimeSdrInputReport() [1/2]

SWGSDRangel::SWGLimeSdrInputReport::SWGLimeSdrInputReport ( )

Definition at line 30 of file SWGLimeSdrInputReport.cpp.

References dropped_packets_count, fifo_fill, fifo_size, gpio_dir, gpio_pins, hw_timestamp, link_rate, m_dropped_packets_count_isSet, m_fifo_fill_isSet, m_fifo_size_isSet, m_gpio_dir_isSet, m_gpio_pins_isSet, m_hw_timestamp_isSet, m_link_rate_isSet, m_overrun_count_isSet, m_stream_active_isSet, m_success_isSet, m_temperature_isSet, m_underrun_count_isSet, overrun_count, stream_active, success, temperature, and underrun_count.

30  {
31  success = 0;
32  m_success_isSet = false;
33  stream_active = 0;
34  m_stream_active_isSet = false;
35  fifo_size = 0;
36  m_fifo_size_isSet = false;
37  fifo_fill = 0;
38  m_fifo_fill_isSet = false;
39  underrun_count = 0;
40  m_underrun_count_isSet = false;
41  overrun_count = 0;
42  m_overrun_count_isSet = false;
45  link_rate = 0.0f;
46  m_link_rate_isSet = false;
47  hw_timestamp = 0;
48  m_hw_timestamp_isSet = false;
49  temperature = 0.0f;
50  m_temperature_isSet = false;
51  gpio_dir = 0;
52  m_gpio_dir_isSet = false;
53  gpio_pins = 0;
54  m_gpio_pins_isSet = false;
55 }

◆ SWGLimeSdrInputReport() [2/2]

SWGSDRangel::SWGLimeSdrInputReport::SWGLimeSdrInputReport ( QString *  json)

Definition at line 25 of file SWGLimeSdrInputReport.cpp.

References fromJson(), and init().

25  {
26  init();
27  this->fromJson(*json);
28 }
virtual SWGLimeSdrInputReport * fromJson(QString &jsonString) override
+ Here is the call graph for this function:

◆ ~SWGLimeSdrInputReport()

SWGSDRangel::SWGLimeSdrInputReport::~SWGLimeSdrInputReport ( )
virtual

Definition at line 57 of file SWGLimeSdrInputReport.cpp.

References cleanup().

57  {
58  this->cleanup();
59 }
+ Here is the call graph for this function:

Member Function Documentation

◆ asJson()

QString SWGSDRangel::SWGLimeSdrInputReport::asJson ( )
overridevirtual

Reimplemented from SWGSDRangel::SWGObject.

Definition at line 143 of file SWGLimeSdrInputReport.cpp.

References asJsonObject().

144 {
145  QJsonObject* obj = this->asJsonObject();
146 
147  QJsonDocument doc(*obj);
148  QByteArray bytes = doc.toJson();
149  delete obj;
150  return QString(bytes);
151 }
virtual QJsonObject * asJsonObject() override
+ Here is the call graph for this function:

◆ asJsonObject()

QJsonObject * SWGSDRangel::SWGLimeSdrInputReport::asJsonObject ( )
overridevirtual

Reimplemented from SWGSDRangel::SWGObject.

Definition at line 154 of file SWGLimeSdrInputReport.cpp.

References dropped_packets_count, fifo_fill, fifo_size, gpio_dir, gpio_pins, hw_timestamp, link_rate, m_dropped_packets_count_isSet, m_fifo_fill_isSet, m_fifo_size_isSet, m_gpio_dir_isSet, m_gpio_pins_isSet, m_hw_timestamp_isSet, m_link_rate_isSet, m_overrun_count_isSet, m_stream_active_isSet, m_success_isSet, m_temperature_isSet, m_underrun_count_isSet, overrun_count, stream_active, success, temperature, and underrun_count.

Referenced by asJson().

154  {
155  QJsonObject* obj = new QJsonObject();
156  if(m_success_isSet){
157  obj->insert("success", QJsonValue(success));
158  }
160  obj->insert("streamActive", QJsonValue(stream_active));
161  }
162  if(m_fifo_size_isSet){
163  obj->insert("fifoSize", QJsonValue(fifo_size));
164  }
165  if(m_fifo_fill_isSet){
166  obj->insert("fifoFill", QJsonValue(fifo_fill));
167  }
169  obj->insert("underrunCount", QJsonValue(underrun_count));
170  }
172  obj->insert("overrunCount", QJsonValue(overrun_count));
173  }
175  obj->insert("droppedPacketsCount", QJsonValue(dropped_packets_count));
176  }
177  if(m_link_rate_isSet){
178  obj->insert("linkRate", QJsonValue(link_rate));
179  }
181  obj->insert("hwTimestamp", QJsonValue(hw_timestamp));
182  }
184  obj->insert("temperature", QJsonValue(temperature));
185  }
186  if(m_gpio_dir_isSet){
187  obj->insert("gpioDir", QJsonValue(gpio_dir));
188  }
189  if(m_gpio_pins_isSet){
190  obj->insert("gpioPins", QJsonValue(gpio_pins));
191  }
192 
193  return obj;
194 }
+ Here is the caller graph for this function:

◆ cleanup()

void SWGSDRangel::SWGLimeSdrInputReport::cleanup ( )

Definition at line 90 of file SWGLimeSdrInputReport.cpp.

Referenced by ~SWGLimeSdrInputReport().

90  {
91 
92 
93 
94 
95 
96 
97 
98 
99 
100 
101 
102 
103 }
+ Here is the caller graph for this function:

◆ fromJson()

SWGLimeSdrInputReport * SWGSDRangel::SWGLimeSdrInputReport::fromJson ( QString &  jsonString)
overridevirtual

Reimplemented from SWGSDRangel::SWGObject.

Definition at line 106 of file SWGLimeSdrInputReport.cpp.

References fromJsonObject().

Referenced by SWGLimeSdrInputReport().

106  {
107  QByteArray array (json.toStdString().c_str());
108  QJsonDocument doc = QJsonDocument::fromJson(array);
109  QJsonObject jsonObject = doc.object();
110  this->fromJsonObject(jsonObject);
111  return this;
112 }
virtual void fromJsonObject(QJsonObject &json) override
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ fromJsonObject()

void SWGSDRangel::SWGLimeSdrInputReport::fromJsonObject ( QJsonObject &  json)
overridevirtual

Reimplemented from SWGSDRangel::SWGObject.

Definition at line 115 of file SWGLimeSdrInputReport.cpp.

References dropped_packets_count, fifo_fill, fifo_size, gpio_dir, gpio_pins, hw_timestamp, link_rate, overrun_count, SWGSDRangel::setValue(), stream_active, success, temperature, and underrun_count.

Referenced by fromJson().

115  {
116  ::SWGSDRangel::setValue(&success, pJson["success"], "qint32", "");
117 
118  ::SWGSDRangel::setValue(&stream_active, pJson["streamActive"], "qint32", "");
119 
120  ::SWGSDRangel::setValue(&fifo_size, pJson["fifoSize"], "qint32", "");
121 
122  ::SWGSDRangel::setValue(&fifo_fill, pJson["fifoFill"], "qint32", "");
123 
124  ::SWGSDRangel::setValue(&underrun_count, pJson["underrunCount"], "qint32", "");
125 
126  ::SWGSDRangel::setValue(&overrun_count, pJson["overrunCount"], "qint32", "");
127 
128  ::SWGSDRangel::setValue(&dropped_packets_count, pJson["droppedPacketsCount"], "qint32", "");
129 
130  ::SWGSDRangel::setValue(&link_rate, pJson["linkRate"], "float", "");
131 
132  ::SWGSDRangel::setValue(&hw_timestamp, pJson["hwTimestamp"], "qint32", "");
133 
134  ::SWGSDRangel::setValue(&temperature, pJson["temperature"], "float", "");
135 
136  ::SWGSDRangel::setValue(&gpio_dir, pJson["gpioDir"], "qint32", "");
137 
138  ::SWGSDRangel::setValue(&gpio_pins, pJson["gpioPins"], "qint32", "");
139 
140 }
void setValue(void *value, QJsonValue obj, QString type, QString complexType)
Definition: SWGHelpers.cpp:25
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getDroppedPacketsCount()

qint32 SWGSDRangel::SWGLimeSdrInputReport::getDroppedPacketsCount ( )

Definition at line 257 of file SWGLimeSdrInputReport.cpp.

References dropped_packets_count.

257  {
258  return dropped_packets_count;
259 }

◆ getFifoFill()

qint32 SWGSDRangel::SWGLimeSdrInputReport::getFifoFill ( )

Definition at line 227 of file SWGLimeSdrInputReport.cpp.

References fifo_fill.

227  {
228  return fifo_fill;
229 }

◆ getFifoSize()

qint32 SWGSDRangel::SWGLimeSdrInputReport::getFifoSize ( )

Definition at line 217 of file SWGLimeSdrInputReport.cpp.

References fifo_size.

217  {
218  return fifo_size;
219 }

◆ getGpioDir()

qint32 SWGSDRangel::SWGLimeSdrInputReport::getGpioDir ( )

Definition at line 297 of file SWGLimeSdrInputReport.cpp.

References gpio_dir.

297  {
298  return gpio_dir;
299 }

◆ getGpioPins()

qint32 SWGSDRangel::SWGLimeSdrInputReport::getGpioPins ( )

Definition at line 307 of file SWGLimeSdrInputReport.cpp.

References gpio_pins.

307  {
308  return gpio_pins;
309 }

◆ getHwTimestamp()

qint32 SWGSDRangel::SWGLimeSdrInputReport::getHwTimestamp ( )

Definition at line 277 of file SWGLimeSdrInputReport.cpp.

References hw_timestamp.

277  {
278  return hw_timestamp;
279 }

◆ getLinkRate()

float SWGSDRangel::SWGLimeSdrInputReport::getLinkRate ( )

Definition at line 267 of file SWGLimeSdrInputReport.cpp.

References link_rate.

267  {
268  return link_rate;
269 }

◆ getOverrunCount()

qint32 SWGSDRangel::SWGLimeSdrInputReport::getOverrunCount ( )

Definition at line 247 of file SWGLimeSdrInputReport.cpp.

References overrun_count.

247  {
248  return overrun_count;
249 }

◆ getStreamActive()

qint32 SWGSDRangel::SWGLimeSdrInputReport::getStreamActive ( )

Definition at line 207 of file SWGLimeSdrInputReport.cpp.

References stream_active.

207  {
208  return stream_active;
209 }

◆ getSuccess()

qint32 SWGSDRangel::SWGLimeSdrInputReport::getSuccess ( )

Definition at line 197 of file SWGLimeSdrInputReport.cpp.

References success.

197  {
198  return success;
199 }

◆ getTemperature()

float SWGSDRangel::SWGLimeSdrInputReport::getTemperature ( )

Definition at line 287 of file SWGLimeSdrInputReport.cpp.

References temperature.

287  {
288  return temperature;
289 }

◆ getUnderrunCount()

qint32 SWGSDRangel::SWGLimeSdrInputReport::getUnderrunCount ( )

Definition at line 237 of file SWGLimeSdrInputReport.cpp.

References underrun_count.

237  {
238  return underrun_count;
239 }

◆ init()

void SWGSDRangel::SWGLimeSdrInputReport::init ( )

Definition at line 62 of file SWGLimeSdrInputReport.cpp.

References dropped_packets_count, fifo_fill, fifo_size, gpio_dir, gpio_pins, hw_timestamp, link_rate, m_dropped_packets_count_isSet, m_fifo_fill_isSet, m_fifo_size_isSet, m_gpio_dir_isSet, m_gpio_pins_isSet, m_hw_timestamp_isSet, m_link_rate_isSet, m_overrun_count_isSet, m_stream_active_isSet, m_success_isSet, m_temperature_isSet, m_underrun_count_isSet, overrun_count, stream_active, success, temperature, and underrun_count.

Referenced by SWGLimeSdrInputReport(), and LimeSDRInput::webapiReportGet().

62  {
63  success = 0;
64  m_success_isSet = false;
65  stream_active = 0;
66  m_stream_active_isSet = false;
67  fifo_size = 0;
68  m_fifo_size_isSet = false;
69  fifo_fill = 0;
70  m_fifo_fill_isSet = false;
71  underrun_count = 0;
72  m_underrun_count_isSet = false;
73  overrun_count = 0;
74  m_overrun_count_isSet = false;
77  link_rate = 0.0f;
78  m_link_rate_isSet = false;
79  hw_timestamp = 0;
80  m_hw_timestamp_isSet = false;
81  temperature = 0.0f;
82  m_temperature_isSet = false;
83  gpio_dir = 0;
84  m_gpio_dir_isSet = false;
85  gpio_pins = 0;
86  m_gpio_pins_isSet = false;
87 }
+ Here is the caller graph for this function:

◆ isSet()

bool SWGSDRangel::SWGLimeSdrInputReport::isSet ( )
overridevirtual

Reimplemented from SWGSDRangel::SWGObject.

Definition at line 318 of file SWGLimeSdrInputReport.cpp.

References m_dropped_packets_count_isSet, m_fifo_fill_isSet, m_fifo_size_isSet, m_gpio_dir_isSet, m_gpio_pins_isSet, m_hw_timestamp_isSet, m_link_rate_isSet, m_overrun_count_isSet, m_stream_active_isSet, m_success_isSet, m_temperature_isSet, and m_underrun_count_isSet.

Referenced by SWGSDRangel::SWGDeviceReport::asJsonObject(), and SWGSDRangel::SWGDeviceReport::isSet().

318  {
319  bool isObjectUpdated = false;
320  do{
321  if(m_success_isSet){ isObjectUpdated = true; break;}
322  if(m_stream_active_isSet){ isObjectUpdated = true; break;}
323  if(m_fifo_size_isSet){ isObjectUpdated = true; break;}
324  if(m_fifo_fill_isSet){ isObjectUpdated = true; break;}
325  if(m_underrun_count_isSet){ isObjectUpdated = true; break;}
326  if(m_overrun_count_isSet){ isObjectUpdated = true; break;}
327  if(m_dropped_packets_count_isSet){ isObjectUpdated = true; break;}
328  if(m_link_rate_isSet){ isObjectUpdated = true; break;}
329  if(m_hw_timestamp_isSet){ isObjectUpdated = true; break;}
330  if(m_temperature_isSet){ isObjectUpdated = true; break;}
331  if(m_gpio_dir_isSet){ isObjectUpdated = true; break;}
332  if(m_gpio_pins_isSet){ isObjectUpdated = true; break;}
333  }while(false);
334  return isObjectUpdated;
335 }
+ Here is the caller graph for this function:

◆ setDroppedPacketsCount()

void SWGSDRangel::SWGLimeSdrInputReport::setDroppedPacketsCount ( qint32  dropped_packets_count)

Definition at line 261 of file SWGLimeSdrInputReport.cpp.

References dropped_packets_count, and m_dropped_packets_count_isSet.

Referenced by LimeSDRInput::webapiFormatDeviceReport().

+ Here is the caller graph for this function:

◆ setFifoFill()

void SWGSDRangel::SWGLimeSdrInputReport::setFifoFill ( qint32  fifo_fill)

Definition at line 231 of file SWGLimeSdrInputReport.cpp.

References fifo_fill, and m_fifo_fill_isSet.

Referenced by LimeSDRInput::webapiFormatDeviceReport().

+ Here is the caller graph for this function:

◆ setFifoSize()

void SWGSDRangel::SWGLimeSdrInputReport::setFifoSize ( qint32  fifo_size)

Definition at line 221 of file SWGLimeSdrInputReport.cpp.

References fifo_size, and m_fifo_size_isSet.

Referenced by LimeSDRInput::webapiFormatDeviceReport().

+ Here is the caller graph for this function:

◆ setGpioDir()

void SWGSDRangel::SWGLimeSdrInputReport::setGpioDir ( qint32  gpio_dir)

Definition at line 301 of file SWGLimeSdrInputReport.cpp.

References gpio_dir, and m_gpio_dir_isSet.

Referenced by LimeSDRInput::webapiFormatDeviceReport().

+ Here is the caller graph for this function:

◆ setGpioPins()

void SWGSDRangel::SWGLimeSdrInputReport::setGpioPins ( qint32  gpio_pins)

Definition at line 311 of file SWGLimeSdrInputReport.cpp.

References gpio_pins, and m_gpio_pins_isSet.

Referenced by LimeSDRInput::webapiFormatDeviceReport().

+ Here is the caller graph for this function:

◆ setHwTimestamp()

void SWGSDRangel::SWGLimeSdrInputReport::setHwTimestamp ( qint32  hw_timestamp)

Definition at line 281 of file SWGLimeSdrInputReport.cpp.

References hw_timestamp, and m_hw_timestamp_isSet.

Referenced by LimeSDRInput::webapiFormatDeviceReport().

+ Here is the caller graph for this function:

◆ setLinkRate()

void SWGSDRangel::SWGLimeSdrInputReport::setLinkRate ( float  link_rate)

Definition at line 271 of file SWGLimeSdrInputReport.cpp.

References link_rate, and m_link_rate_isSet.

Referenced by LimeSDRInput::webapiFormatDeviceReport().

+ Here is the caller graph for this function:

◆ setOverrunCount()

void SWGSDRangel::SWGLimeSdrInputReport::setOverrunCount ( qint32  overrun_count)

Definition at line 251 of file SWGLimeSdrInputReport.cpp.

References m_overrun_count_isSet, and overrun_count.

Referenced by LimeSDRInput::webapiFormatDeviceReport().

+ Here is the caller graph for this function:

◆ setStreamActive()

void SWGSDRangel::SWGLimeSdrInputReport::setStreamActive ( qint32  stream_active)

Definition at line 211 of file SWGLimeSdrInputReport.cpp.

References m_stream_active_isSet, and stream_active.

Referenced by LimeSDRInput::webapiFormatDeviceReport().

+ Here is the caller graph for this function:

◆ setSuccess()

void SWGSDRangel::SWGLimeSdrInputReport::setSuccess ( qint32  success)

Definition at line 201 of file SWGLimeSdrInputReport.cpp.

References m_success_isSet, and success.

Referenced by LimeSDRInput::webapiFormatDeviceReport().

+ Here is the caller graph for this function:

◆ setTemperature()

void SWGSDRangel::SWGLimeSdrInputReport::setTemperature ( float  temperature)

Definition at line 291 of file SWGLimeSdrInputReport.cpp.

References m_temperature_isSet, and temperature.

Referenced by LimeSDRInput::webapiFormatDeviceReport().

+ Here is the caller graph for this function:

◆ setUnderrunCount()

void SWGSDRangel::SWGLimeSdrInputReport::setUnderrunCount ( qint32  underrun_count)

Definition at line 241 of file SWGLimeSdrInputReport.cpp.

References m_underrun_count_isSet, and underrun_count.

Referenced by LimeSDRInput::webapiFormatDeviceReport().

+ Here is the caller graph for this function:

Member Data Documentation

◆ dropped_packets_count

qint32 SWGSDRangel::SWGLimeSdrInputReport::dropped_packets_count
private

◆ fifo_fill

qint32 SWGSDRangel::SWGLimeSdrInputReport::fifo_fill
private

◆ fifo_size

qint32 SWGSDRangel::SWGLimeSdrInputReport::fifo_size
private

◆ gpio_dir

qint32 SWGSDRangel::SWGLimeSdrInputReport::gpio_dir
private

◆ gpio_pins

qint32 SWGSDRangel::SWGLimeSdrInputReport::gpio_pins
private

◆ hw_timestamp

qint32 SWGSDRangel::SWGLimeSdrInputReport::hw_timestamp
private

◆ link_rate

float SWGSDRangel::SWGLimeSdrInputReport::link_rate
private

◆ m_dropped_packets_count_isSet

bool SWGSDRangel::SWGLimeSdrInputReport::m_dropped_packets_count_isSet
private

◆ m_fifo_fill_isSet

bool SWGSDRangel::SWGLimeSdrInputReport::m_fifo_fill_isSet
private

Definition at line 94 of file SWGLimeSdrInputReport.h.

Referenced by asJsonObject(), init(), isSet(), setFifoFill(), and SWGLimeSdrInputReport().

◆ m_fifo_size_isSet

bool SWGSDRangel::SWGLimeSdrInputReport::m_fifo_size_isSet
private

Definition at line 91 of file SWGLimeSdrInputReport.h.

Referenced by asJsonObject(), init(), isSet(), setFifoSize(), and SWGLimeSdrInputReport().

◆ m_gpio_dir_isSet

bool SWGSDRangel::SWGLimeSdrInputReport::m_gpio_dir_isSet
private

Definition at line 115 of file SWGLimeSdrInputReport.h.

Referenced by asJsonObject(), init(), isSet(), setGpioDir(), and SWGLimeSdrInputReport().

◆ m_gpio_pins_isSet

bool SWGSDRangel::SWGLimeSdrInputReport::m_gpio_pins_isSet
private

◆ m_hw_timestamp_isSet

bool SWGSDRangel::SWGLimeSdrInputReport::m_hw_timestamp_isSet
private

◆ m_link_rate_isSet

bool SWGSDRangel::SWGLimeSdrInputReport::m_link_rate_isSet
private

◆ m_overrun_count_isSet

bool SWGSDRangel::SWGLimeSdrInputReport::m_overrun_count_isSet
private

◆ m_stream_active_isSet

bool SWGSDRangel::SWGLimeSdrInputReport::m_stream_active_isSet
private

◆ m_success_isSet

bool SWGSDRangel::SWGLimeSdrInputReport::m_success_isSet
private

Definition at line 85 of file SWGLimeSdrInputReport.h.

Referenced by asJsonObject(), init(), isSet(), setSuccess(), and SWGLimeSdrInputReport().

◆ m_temperature_isSet

bool SWGSDRangel::SWGLimeSdrInputReport::m_temperature_isSet
private

◆ m_underrun_count_isSet

bool SWGSDRangel::SWGLimeSdrInputReport::m_underrun_count_isSet
private

◆ overrun_count

qint32 SWGSDRangel::SWGLimeSdrInputReport::overrun_count
private

◆ stream_active

qint32 SWGSDRangel::SWGLimeSdrInputReport::stream_active
private

◆ success

qint32 SWGSDRangel::SWGLimeSdrInputReport::success
private

◆ temperature

float SWGSDRangel::SWGLimeSdrInputReport::temperature
private

◆ underrun_count

qint32 SWGSDRangel::SWGLimeSdrInputReport::underrun_count
private

The documentation for this class was generated from the following files: