Sensor Demo for CTIA

Dependencies:   LoRaWAN-lib SX1272Lib lib_gps lib_mma8451q lib_mpl3115a2 mbed

Fork of LoRaWAN-NAMote72-Application-Demo by Semtech

Committer:
ubhat
Date:
Tue Aug 30 03:57:19 2016 +0000
Revision:
14:172b8e37168c
Parent:
0:69f2e28d12c1
Add Application for Sensor

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: Serial display management
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 #ifndef __SERIAL_DISPLAY_H__
ubhat 0:69f2e28d12c1 16 #define __SERIAL_DISPLAY_H__
ubhat 0:69f2e28d12c1 17
ubhat 0:69f2e28d12c1 18 #include "board.h"
ubhat 0:69f2e28d12c1 19 #include "vt100.h"
ubhat 0:69f2e28d12c1 20 #include "Comissioning.h"
ubhat 0:69f2e28d12c1 21 #include "LoRaMac.h"
ubhat 0:69f2e28d12c1 22 #include "Common.h"
ubhat 0:69f2e28d12c1 23 #include "LoRaDeviceStateProc.h"
ubhat 0:69f2e28d12c1 24
ubhat 0:69f2e28d12c1 25 void SerialDisplayJoinUpdate( void );
ubhat 0:69f2e28d12c1 26 void SerialDisplayTxUpdate( void );
ubhat 0:69f2e28d12c1 27 void SerialDisplayRxUpdate( void );
ubhat 0:69f2e28d12c1 28 void SerialDisplayHex( uint8_t *pData, uint8_t len );
ubhat 0:69f2e28d12c1 29 void SerialAcclMetrDisplay( uint8_t statusReg );
ubhat 0:69f2e28d12c1 30 void DisplayNetworkParam( void );
ubhat 0:69f2e28d12c1 31
ubhat 0:69f2e28d12c1 32 #endif // __SERIAL_DISPLAY_H__