inital draft

Dependencies:   mbed LoRaWAN-lib SX1272Liby

Fork of LoRaWAN-demo-72_tjm by Timothy Mulrooney

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers board.h Source File

board.h

00001 /*
00002  / _____)             _              | |
00003 ( (____  _____ ____ _| |_ _____  ____| |__
00004  \____ \| ___ |    (_   _) ___ |/ ___)  _ \
00005  _____) ) ____| | | || |_| ____( (___| | | |
00006 (______/|_____)_|_|_| \__)_____)\____)_| |_|
00007     (C)2015 Semtech
00008 
00009 Description: Target board general functions implementation
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 __BOARD_H__
00016 #define __BOARD_H__
00017 
00018 #include "mbed.h"
00019 #include "system/timer.h"
00020 #include "debug.h"
00021 #include "system/utilities.h"
00022 #include "sx1272-hal.h"
00023 
00024 //#define USE_BAND_868
00025 //#define USE_BAND_915
00026 #define USE_BAND_915_HYBRID 0
00027 
00028 extern SX1272MB2xAS Radio;
00029 
00030 /*!
00031  * \brief Initializes the target board peripherals.
00032  */
00033 void BoardInit( void );
00034 
00035 /*!
00036  * \brief Measure the Battery level
00037  *
00038  * \retval value  battery level ( 0: very low, 254: fully charged )
00039  */
00040 uint8_t BoardGetBatteryLevel( void );
00041 
00042 #endif // __BOARD_H__