LoRA production board

Dependencies:   mbed LoRaWAN-lib SX1272Liby

Fork of frdm_LoRa_Connect_Woodstream_Demo_tjm by Timothy Mulrooney

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers board.cpp Source File

board.cpp

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 #include "mbed.h"
00016 #include "board.h"
00017 
00018 SX1272MB2xAS Radio( NULL );
00019 
00020 void BoardInit( void )
00021 {
00022     TimerTimeCounterInit( );
00023 }
00024 
00025 
00026 uint8_t BoardGetBatteryLevel( void ) 
00027 {
00028     return 0xFE;
00029 }