test harness

Dependencies:   LoRaWAN-NAMote72-Application-Demo LoRaWAN-lib2 SX1272Lib lib_gps lib_mma8451q lib_mpl3115a2 mbed

Fork of LoRaWAN-NAMote72-Application-Demo by Semtech

Committer:
billvs
Date:
Wed Nov 08 14:21:52 2017 +0000
Revision:
16:3aa2e2bf34c3
Parent:
0:69f2e28d12c1
changes for test harnes

Who changed what in which revision?

UserRevisionLine numberNew 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
ubhat 0:69f2e28d12c1 28 void McpsConfirm( McpsConfirm_t *McpsConfirm );
ubhat 0:69f2e28d12c1 29 void McpsIndication( McpsIndication_t *McpsIndication );
ubhat 0:69f2e28d12c1 30 void MlmeConfirm( MlmeConfirm_t *MlmeConfirm );
ubhat 0:69f2e28d12c1 31
ubhat 0:69f2e28d12c1 32 #endif
ubhat 0:69f2e28d12c1 33