1
Dependencies: X_NUCLEO_IKS01A1 LoRaWAN-lib SX1276Lib mbed
app/SerialDisplay.h@8:88e8a1c7b88a, 2018-11-09 (annotated)
- Committer:
- emerette
- Date:
- Fri Nov 09 21:52:19 2018 +0000
- Revision:
- 8:88e8a1c7b88a
- Parent:
- 0:42863a11464a
1
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
ubhat | 0:42863a11464a | 1 | /* |
ubhat | 0:42863a11464a | 2 | / _____) _ | | |
ubhat | 0:42863a11464a | 3 | ( (____ _____ ____ _| |_ _____ ____| |__ |
ubhat | 0:42863a11464a | 4 | \____ \| ___ | (_ _) ___ |/ ___) _ \ |
ubhat | 0:42863a11464a | 5 | _____) ) ____| | | || |_| ____( (___| | | | |
ubhat | 0:42863a11464a | 6 | (______/|_____)_|_|_| \__)_____)\____)_| |_| |
ubhat | 0:42863a11464a | 7 | (C)2015 Semtech |
ubhat | 0:42863a11464a | 8 | |
ubhat | 0:42863a11464a | 9 | Description: Serial display management |
ubhat | 0:42863a11464a | 10 | |
ubhat | 0:42863a11464a | 11 | License: Revised BSD License, see LICENSE.TXT file include in the project |
ubhat | 0:42863a11464a | 12 | |
ubhat | 0:42863a11464a | 13 | Maintainer: Uttam Bhat |
ubhat | 0:42863a11464a | 14 | */ |
ubhat | 0:42863a11464a | 15 | #ifndef __SERIAL_DISPLAY_H__ |
ubhat | 0:42863a11464a | 16 | #define __SERIAL_DISPLAY_H__ |
ubhat | 0:42863a11464a | 17 | |
ubhat | 0:42863a11464a | 18 | #include "board.h" |
ubhat | 0:42863a11464a | 19 | #include "vt100.h" |
ubhat | 0:42863a11464a | 20 | #include "Comissioning.h" |
ubhat | 0:42863a11464a | 21 | #include "LoRaMac.h" |
ubhat | 0:42863a11464a | 22 | #include "Common.h" |
ubhat | 0:42863a11464a | 23 | #include "LoRaDeviceStateProc.h" |
ubhat | 0:42863a11464a | 24 | |
ubhat | 0:42863a11464a | 25 | void SerialDisplayJoinUpdate( void ); |
ubhat | 0:42863a11464a | 26 | void SerialDisplayTxUpdate( void ); |
ubhat | 0:42863a11464a | 27 | void SerialDisplayRxUpdate( void ); |
ubhat | 0:42863a11464a | 28 | void SerialDisplayHex( uint8_t *pData, uint8_t len ); |
ubhat | 0:42863a11464a | 29 | void SerialAcclMetrDisplay( uint8_t statusReg ); |
ubhat | 0:42863a11464a | 30 | void DisplayNetworkParam( void ); |
ubhat | 0:42863a11464a | 31 | |
ubhat | 0:42863a11464a | 32 | #endif // __SERIAL_DISPLAY_H__ |