Semtech / LoRaWAN-NAMote72-Application-Demo

Dependencies:   LoRaWAN-lib mbed lib_mpl3115a2 lib_mma8451q lib_gps SX1272Lib

Dependents:   LoRaWAN-NAMote72-BVS-confirmed-tester-0-7v1_copy

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers LoRaMacLayerService.h Source File

LoRaMacLayerService.h

00001 /*
00002  / _____)             _              | |
00003 ( (____  _____ ____ _| |_ _____  ____| |__
00004  \____ \| ___ |    (_   _) ___ |/ ___)  _ \
00005  _____) ) ____| | | || |_| ____( (___| | | |
00006 (______/|_____)_|_|_| \__)_____)\____)_| |_|
00007     (C)2015 Semtech
00008 
00009 Description: MAC Layer Services: MLME & MCPS
00010 
00011 License: Revised BSD License, see LICENSE.TXT file include in the project
00012 
00013 Maintainer: Uttam Bhat
00014 */
00015 
00016 #ifndef __LORA_MAC_LAYER_SERVICE__
00017 #define __LORA_MAC_LAYER_SERVICE__
00018 
00019 #include "board.h"
00020 #include "LoRaMac.h"
00021 #include "Common.h"
00022 #include "LoRaEventProc.h"
00023 #include "ComplianceTest.h"
00024 #include "SerialDisplay.h"
00025 #include "mbed.h"
00026 
00027 
00028 void McpsConfirm( McpsConfirm_t *mcpsConfirm );
00029 void McpsIndication( McpsIndication_t *mcpsIndication );
00030 void MlmeConfirm( MlmeConfirm_t *mlmeConfirm );
00031 
00032 #endif
00033