Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: X_NUCLEO_IKS01A1 driver_mbed_TH02 LoRaWAN-lib-v1_0_1 SX1272Lib mbed
Fork of LoRaWAN-SX1272-Application-Demo by
app/SerialDisplay.h@0:6cc76d70e2a1, 2017-04-06 (annotated)
- Committer:
 - ubhat
 - Date:
 - Thu Apr 06 21:59:50 2017 +0000
 - Revision:
 - 0:6cc76d70e2a1
 
LoRaWAN SX1272 Application
Who changed what in which revision?
| User | Revision | Line number | New contents of line | 
|---|---|---|---|
| ubhat | 0:6cc76d70e2a1 | 1 | /* | 
| ubhat | 0:6cc76d70e2a1 | 2 | / _____) _ | | | 
| ubhat | 0:6cc76d70e2a1 | 3 | ( (____ _____ ____ _| |_ _____ ____| |__ | 
| ubhat | 0:6cc76d70e2a1 | 4 | \____ \| ___ | (_ _) ___ |/ ___) _ \ | 
| ubhat | 0:6cc76d70e2a1 | 5 | _____) ) ____| | | || |_| ____( (___| | | | | 
| ubhat | 0:6cc76d70e2a1 | 6 | (______/|_____)_|_|_| \__)_____)\____)_| |_| | 
| ubhat | 0:6cc76d70e2a1 | 7 | (C)2015 Semtech | 
| ubhat | 0:6cc76d70e2a1 | 8 | |
| ubhat | 0:6cc76d70e2a1 | 9 | Description: Serial display management | 
| ubhat | 0:6cc76d70e2a1 | 10 | |
| ubhat | 0:6cc76d70e2a1 | 11 | License: Revised BSD License, see LICENSE.TXT file include in the project | 
| ubhat | 0:6cc76d70e2a1 | 12 | |
| ubhat | 0:6cc76d70e2a1 | 13 | Maintainer: Uttam Bhat | 
| ubhat | 0:6cc76d70e2a1 | 14 | */ | 
| ubhat | 0:6cc76d70e2a1 | 15 | #ifndef __SERIAL_DISPLAY_H__ | 
| ubhat | 0:6cc76d70e2a1 | 16 | #define __SERIAL_DISPLAY_H__ | 
| ubhat | 0:6cc76d70e2a1 | 17 | |
| ubhat | 0:6cc76d70e2a1 | 18 | #include "board.h" | 
| ubhat | 0:6cc76d70e2a1 | 19 | #include "vt100.h" | 
| ubhat | 0:6cc76d70e2a1 | 20 | #include "Comissioning.h" | 
| ubhat | 0:6cc76d70e2a1 | 21 | #include "LoRaMac.h" | 
| ubhat | 0:6cc76d70e2a1 | 22 | #include "Common.h" | 
| ubhat | 0:6cc76d70e2a1 | 23 | #include "LoRaDeviceStateProc.h" | 
| ubhat | 0:6cc76d70e2a1 | 24 | |
| ubhat | 0:6cc76d70e2a1 | 25 | void SerialDisplayJoinUpdate( void ); | 
| ubhat | 0:6cc76d70e2a1 | 26 | void SerialDisplayTxUpdate( void ); | 
| ubhat | 0:6cc76d70e2a1 | 27 | void SerialDisplayRxUpdate( void ); | 
| ubhat | 0:6cc76d70e2a1 | 28 | void SerialDisplayHex( uint8_t *pData, uint8_t len ); | 
| ubhat | 0:6cc76d70e2a1 | 29 | void SerialAcclMetrDisplay( uint8_t statusReg ); | 
| ubhat | 0:6cc76d70e2a1 | 30 | void DisplayNetworkParam( void ); | 
| ubhat | 0:6cc76d70e2a1 | 31 | |
| ubhat | 0:6cc76d70e2a1 | 32 | #endif // __SERIAL_DISPLAY_H__ | 
