Merge pull request #8034 from EnsilicaEdd/snr_unsigned_signed

Changed the reported SNR from unsigned to signed.
pull/8231/merge
Martin Kojtal 2018-09-25 13:23:14 +02:00 committed by GitHub
commit a999289365
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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
*/ */

View File

@ -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.
* *