mQ Branch for NA mote testing
Dependencies: LoRaWAN-lib SX1272Lib-mQ lib_gps lib_mma8451q lib_mpl3115a2 mbed
Fork of LoRaWAN-NAMote72-Application-Demo by
app/LoRaMacLayerService.h@19:e136bd75eabd, 2018-03-30 (annotated)
- Committer:
- Benedict_Tizzano
- Date:
- Fri Mar 30 19:02:45 2018 +0000
- Revision:
- 19:e136bd75eabd
- Parent:
- 18:18408c3c2d0c
mQ Branch
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
ubhat | 0:69f2e28d12c1 | 1 | /* |
ubhat | 0:69f2e28d12c1 | 2 | / _____) _ | | |
ubhat | 0:69f2e28d12c1 | 3 | ( (____ _____ ____ _| |_ _____ ____| |__ |
ubhat | 0:69f2e28d12c1 | 4 | \____ \| ___ | (_ _) ___ |/ ___) _ \ |
ubhat | 0:69f2e28d12c1 | 5 | _____) ) ____| | | || |_| ____( (___| | | | |
ubhat | 0:69f2e28d12c1 | 6 | (______/|_____)_|_|_| \__)_____)\____)_| |_| |
ubhat | 0:69f2e28d12c1 | 7 | (C)2015 Semtech |
ubhat | 0:69f2e28d12c1 | 8 | |
ubhat | 0:69f2e28d12c1 | 9 | Description: MAC Layer Services: MLME & MCPS |
ubhat | 0:69f2e28d12c1 | 10 | |
ubhat | 0:69f2e28d12c1 | 11 | License: Revised BSD License, see LICENSE.TXT file include in the project |
ubhat | 0:69f2e28d12c1 | 12 | |
ubhat | 0:69f2e28d12c1 | 13 | Maintainer: Uttam Bhat |
ubhat | 0:69f2e28d12c1 | 14 | */ |
ubhat | 0:69f2e28d12c1 | 15 | |
ubhat | 0:69f2e28d12c1 | 16 | #ifndef __LORA_MAC_LAYER_SERVICE__ |
ubhat | 0:69f2e28d12c1 | 17 | #define __LORA_MAC_LAYER_SERVICE__ |
ubhat | 0:69f2e28d12c1 | 18 | |
ubhat | 0:69f2e28d12c1 | 19 | #include "board.h" |
ubhat | 0:69f2e28d12c1 | 20 | #include "LoRaMac.h" |
ubhat | 0:69f2e28d12c1 | 21 | #include "Common.h" |
ubhat | 0:69f2e28d12c1 | 22 | #include "LoRaEventProc.h" |
ubhat | 0:69f2e28d12c1 | 23 | #include "ComplianceTest.h" |
ubhat | 0:69f2e28d12c1 | 24 | #include "SerialDisplay.h" |
ubhat | 0:69f2e28d12c1 | 25 | #include "mbed.h" |
ubhat | 0:69f2e28d12c1 | 26 | |
ubhat | 0:69f2e28d12c1 | 27 | |
mluis | 18:18408c3c2d0c | 28 | void McpsConfirm( McpsConfirm_t *mcpsConfirm ); |
mluis | 18:18408c3c2d0c | 29 | void McpsIndication( McpsIndication_t *mcpsIndication ); |
mluis | 18:18408c3c2d0c | 30 | void MlmeConfirm( MlmeConfirm_t *mlmeConfirm ); |
ubhat | 0:69f2e28d12c1 | 31 | |
ubhat | 0:69f2e28d12c1 | 32 | #endif |
ubhat | 0:69f2e28d12c1 | 33 |