Node code for sx1272 LoRa transciever

Dependencies:   mbed BMP085 BufferedSerial DHT Sds021 Chainable_RGB_LED DigitDisplay LoRaWAN-lib SX1272Lib

Fork of LoRaWAN-demo-72-bootcamp by Semtech

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers SerialDisplay.h Source File

SerialDisplay.h

00001 /*
00002  / _____)             _              | |
00003 ( (____  _____ ____ _| |_ _____  ____| |__
00004  \____ \| ___ |    (_   _) ___ |/ ___)  _ \
00005  _____) ) ____| | | || |_| ____( (___| | | |
00006 (______/|_____)_|_|_| \__)_____)\____)_| |_|
00007     (C)2015 Semtech
00008 
00009 Description: VT100 serial display management
00010 
00011 License: Revised BSD License, see LICENSE.TXT file include in the project
00012 
00013 Maintainer: Miguel Luis and Gregory Cristian
00014 */
00015 #ifndef __SERIAL_DISPLAY_H__
00016 #define __SERIAL_DISPLAY_H__
00017 
00018 void SerialDisplayInit( void );
00019 void SerialDisplayUpdateUplink( bool acked, uint8_t datarate, uint16_t counter, uint8_t port, uint8_t *buffer, uint8_t bufferSize );
00020 void SerialDisplayUpdateDownlink( bool rxData, int16_t rssi, int8_t snr, uint16_t counter, uint8_t port, uint8_t *buffer, uint8_t bufferSize );
00021 void SerialDisplayPrintCheckBox( bool activated );
00022 void SerialDisplayUpdateLedState( uint8_t id, uint8_t state );
00023 void SerialDisplayUpdateActivationMode( bool otaa );
00024 void SerialDisplayUpdateEui( uint8_t line, uint8_t *eui );
00025 void SerialDisplayUpdateKey( uint8_t line, uint8_t *key );
00026 void SerialDisplayUpdateNwkId( uint8_t id );
00027 void SerialDisplayUpdateDevAddr( uint32_t addr );
00028 void SerialDisplayUpdateFrameType( bool confirmed );
00029 void SerialDisplayUpdateAdr( bool adr );
00030 void SerialDisplayUpdateDutyCycle( bool dutyCycle );
00031 void SerialDisplayUpdatePublicNetwork( bool network );
00032 void SerialDisplayUpdateData( uint8_t *buffer );
00033 void SerialDisplayUpdateNetworkIsJoined( bool state );
00034 void SerialDisplayUpdateUplinkAcked( bool state );
00035 void SerialDisplayUpdateDonwlinkRxData( bool state );
00036 bool SerialDisplayReadable( void );
00037 uint8_t SerialDisplayGetChar( void );
00038 
00039 #endif // __SERIAL_DISPLAY_H__