This code holds the complete demo set for the sx1280: PingPong, PER and Ranging Outdoor demo application. >>>>> This code MUST run on the mbed library release 127 or everything will be painfully slow.

Dependencies:   mbed SX1280Lib DmTftLibrary

* This code MUST run on the mbed library release 127 or everything will be painfully slow.*
Revision:
8:c0a5f53fe196
Parent:
5:a0f5842fb337
Child:
13:94a3f92fd49c
--- a/Demo/DemoApplication.h	Wed Apr 19 14:21:05 2017 +0000
+++ b/Demo/DemoApplication.h	Thu May 11 15:42:05 2017 +0000
@@ -19,7 +19,7 @@
 /*!
  * \brief Used to display firmware version on TFT (Utilities menu)
  */
-#define FIRMWARE_VERSION    ( ( char* )"Firmware Version: 170331A" )
+#define FIRMWARE_VERSION    ( ( char* )"Firmware Version: 170511" )
 
 /*!
  * \brief Define range of central frequency [Hz]
@@ -69,8 +69,8 @@
 /*!
  * \brief Define min and max ranging channels count
  */
-#define DEMO_RNG_CHANNELS_COUNT_MAX 90
-#define DEMO_RNG_CHANNELS_COUNT_MIN 10
+const uint16_t DEMO_RNG_CHANNELS_COUNT_MAX = 255;
+const uint16_t DEMO_RNG_CHANNELS_COUNT_MIN = 10;
 
 /*!
  * \brief Define min and max Z Score for ranging filtered results
@@ -171,7 +171,7 @@
     double RngFeiFactor;         // Ranging frequency correction factor
     uint16_t RngReqDelay;        // Time between ranging request
     uint16_t RngCalib;           // Ranging Calibration
-    uint8_t RngZscoreMax;        // Max Zscore for ranging value ( ! *10 ! )
+    uint8_t RFU;                 // -------------------------
     int8_t RssiValue;            // Demo Rssi Value
     int8_t SnrValue;             // Demo Snr Value (only for LORA mod. type)
 }DemoSettings_t;