mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #8034 from EnsilicaEdd/snr_unsigned_signed
Changed the reported SNR from unsigned to signed.pull/8231/merge
commit
a999289365
|
@ -665,7 +665,7 @@ typedef struct {
|
||||||
/**
|
/**
|
||||||
* The SNR for the received packet.
|
* The SNR for the received packet.
|
||||||
*/
|
*/
|
||||||
uint8_t snr;
|
int8_t snr;
|
||||||
/**
|
/**
|
||||||
* A boolean to mark if the meta data is stale
|
* A boolean to mark if the meta data is stale
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -666,7 +666,7 @@ typedef struct {
|
||||||
/*!
|
/*!
|
||||||
* The SNR of the received packet.
|
* The SNR of the received packet.
|
||||||
*/
|
*/
|
||||||
uint8_t snr;
|
int8_t snr;
|
||||||
/*!
|
/*!
|
||||||
* The receive window.
|
* The receive window.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue