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/SerialDisplay.h@18:18408c3c2d0c, 2017-04-24 (annotated)
- Committer:
- mluis
- Date:
- Mon Apr 24 13:47:27 2017 +0000
- Revision:
- 18:18408c3c2d0c
- Parent:
- 0:69f2e28d12c1
WARNING: Radio API timings changed from micro-seconds to milliseconds; ; Synchronized with https://github.com/Lora-net/LoRaMac-node git revision e506c246652fa44c3f24cecb89d0707b49ece739; Updated all libraries to the latest versions
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: 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" |
mluis | 18:18408c3c2d0c | 20 | #include "Commissioning.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 ); |
mluis | 18:18408c3c2d0c | 31 | void SerialDisplayJoinDataRateUpdate( uint8_t actualDatarate ); |
mluis | 18:18408c3c2d0c | 32 | void DisplaySwVersion( void ); |
ubhat | 0:69f2e28d12c1 | 33 | |
ubhat | 0:69f2e28d12c1 | 34 | #endif // __SERIAL_DISPLAY_H__ |