Fork of the Simple Ping-Pong demo application between two SX1272MB2xAs demo board. It's now a simple application demonstrating simple Rx (Receive) from a SX1272 boards.

Dependencies:   SX1272Lib mbed

Fork of SX1272PingPong by Semtech

Revision:
21:03a7d7429cd1
Parent:
16:263c47d59beb
--- a/main.h	Tue Mar 28 14:44:05 2017 +0000
+++ b/main.h	Sat Apr 01 21:46:33 2017 +0000
@@ -36,13 +36,18 @@
 void OnRxError( void );
 
 /*!
- * @brief Function executed on Radio Fhss Change Channel event
+ * @brief Function which convert a unint8 to float
  */
-void OnFhssChangeChannel( uint8_t channelIndex );
+float u8_to_float(uint8_t x, bool isTemp);
 
 /*!
- * @brief Function executed on CAD Done event
+ * @brief function that print payload data
  */
-void OnCadDone( void );
+void retrieve_data(uint8_t * payload);
+
+/*!
+ * @brief function that convert an encoded measurement into is real value
+ */
+void convert(uint8_t m, uint8_t t);
 
 #endif // __MAIN_H__
\ No newline at end of file