Espotel / Mbed 2 deprecated LoRaWAN_Serial_port_driven_and_configurable_ELMO_based_on_TxRx_Template

Dependencies:   SX1272lib-PABOOST-HW-Modification mbed

Fork of LoRaWAN_ELMO_TxRx_Template by Espotel

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__