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
RadioHandler.h
- Committer:
- KosTee
- Date:
- 2016-10-07
- Revision:
- 7:3d16d6fe3b12
- Parent:
- 5:be347c6040c1
- Child:
- 10:ceaf618066ca
File content as of revision 7:3d16d6fe3b12:
/* / _____) _ | | ( (____ _____ ____ _| |_ _____ ____| |__ \____ \| ___ | (_ _) ___ |/ ___) _ \ _____) ) ____| | | || |_| ____( (___| | | | (______/|_____)_|_|_| \__)_____)\____)_| |_| 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__