mirror of https://github.com/ARMmbed/mbed-os.git
Changed the reported SNR from unsigned to signed.
Internally and logically it is a signed value.pull/8034/head
parent
970bc7369c
commit
4a07adbac5
|
@ -663,7 +663,7 @@ typedef struct {
|
|||
/**
|
||||
* The SNR for the received packet.
|
||||
*/
|
||||
uint8_t snr;
|
||||
int8_t snr;
|
||||
/**
|
||||
* A boolean to mark if the meta data is stale
|
||||
*/
|
||||
|
|
|
@ -666,7 +666,7 @@ typedef struct {
|
|||
/*!
|
||||
* The SNR of the received packet.
|
||||
*/
|
||||
uint8_t snr;
|
||||
int8_t snr;
|
||||
/*!
|
||||
* The receive window.
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue