Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: SX1272lib-PABOOST-HW-Modification mbed
Fork of LoRaWAN_ELMO_TxRx_Template by
Diff: RadioHandler.h
- Revision:
- 7:3d16d6fe3b12
- Parent:
- 5:be347c6040c1
- Child:
- 10:ceaf618066ca
--- a/RadioHandler.h Tue Apr 19 21:48:58 2016 +0000 +++ b/RadioHandler.h Fri Oct 07 11:40:18 2016 +0000 @@ -8,11 +8,25 @@ Description: Main radio loop License: Revised BSD License, see LICENSE.TXT file include in the project */ +#include "Comissioning.h" #ifndef __RADIOHANDLER_H__ #define __RADIOHANDLER_H__ + void RadioInit( void ); void RequestPacketTx( char *DataString, bool PeriodicRequested ); void RadioHandler( void ); +void RadioSetup( void ); +void SetRadioValues(void); +void SetDevEui(void); +void SetAppEui(void); +void SetAppKey(void); + +//#if( OVER_THE_AIR_ACTIVATION != 0 ) +/* Copied these values to .h for easier handling. TK */ +extern uint8_t DevEui[8]; +extern uint8_t AppEui[8]; +extern uint8_t AppKey[16]; + #endif // __RADIOHANDLER_H__