Stable version of the xDot library for mbed 5. This version of the library is suitable for deployment scenarios.

Dependents:   Dot-Examples XDOT-Devicewise Dot-Examples-delujoc Dot-Examples_receive ... more

Fork of libxDot-dev-mbed5-deprecated by MultiTech

Embed: (wiki syntax)

« Back to documentation index

Statistics Struct Reference

Statistics Struct Reference

Statistics of current network session. More...

#include <Lora.h>

Data Fields

uint32_t Up
 Number of uplink packets sent.
uint32_t Down
 Number of downlink packets received.
uint32_t Joins
 Number of join requests sent.
uint32_t JoinFails
 Number of join requests without response or invalid response.
uint32_t MissedAcks
 Number of missed acknowledgement attempts of confirmed packets.
uint32_t CRCErrors
 Number of CRC errors in received packets.
int32_t AvgCount
 Number of packets used to compute rolling average of RSSI and SNR.
int16_t Rssi
 RSSI of last packet received.
int16_t RssiMin
 Minimum RSSI of last AvgCount packets.
int16_t RssiMax
 Maximum RSSI of last AvgCount packets.
int16_t RssiAvg
 Rolling average RSSI of last AvgCount packets.
int16_t Snr
 SNR of last packet received.
int16_t SnrMin
 Minimum SNR of last AvgCount packets.
int16_t SnrMax
 Maximum SNR of last AvgCount packets.
int16_t SnrAvg
 Rolling average SNR of last AvgCount packets.

Detailed Description

Statistics of current network session.

Definition at line 453 of file Lora.h.


Field Documentation

int32_t AvgCount

Number of packets used to compute rolling average of RSSI and SNR.

Definition at line 460 of file Lora.h.

uint32_t CRCErrors

Number of CRC errors in received packets.

Definition at line 459 of file Lora.h.

uint32_t Down

Number of downlink packets received.

Definition at line 455 of file Lora.h.

uint32_t JoinFails

Number of join requests without response or invalid response.

Definition at line 457 of file Lora.h.

uint32_t Joins

Number of join requests sent.

Definition at line 456 of file Lora.h.

uint32_t MissedAcks

Number of missed acknowledgement attempts of confirmed packets.

Definition at line 458 of file Lora.h.

int16_t Rssi

RSSI of last packet received.

Definition at line 461 of file Lora.h.

int16_t RssiAvg

Rolling average RSSI of last AvgCount packets.

Definition at line 464 of file Lora.h.

int16_t RssiMax

Maximum RSSI of last AvgCount packets.

Definition at line 463 of file Lora.h.

int16_t RssiMin

Minimum RSSI of last AvgCount packets.

Definition at line 462 of file Lora.h.

int16_t Snr

SNR of last packet received.

Definition at line 465 of file Lora.h.

int16_t SnrAvg

Rolling average SNR of last AvgCount packets.

Definition at line 468 of file Lora.h.

int16_t SnrMax

Maximum SNR of last AvgCount packets.

Definition at line 467 of file Lora.h.

int16_t SnrMin

Minimum SNR of last AvgCount packets.

Definition at line 466 of file Lora.h.

uint32_t Up

Number of uplink packets sent.

Definition at line 454 of file Lora.h.