Forked (hacked) for Legacy Gateway testing

Dependencies:   mbed LoRaWAN-lib SX1272Lib

Fork of LoRaWAN-demo-72 by Miguel Luis

Committer:
mick_ccc
Date:
Thu Apr 20 14:33:12 2017 +0000
Revision:
10:7e52d0c46ea0
Parent:
6:f9224695ed01
forked LoRaWAN-lib

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mluis 0:45496a70a8a5 1 /*
mluis 0:45496a70a8a5 2 / _____) _ | |
mluis 0:45496a70a8a5 3 ( (____ _____ ____ _| |_ _____ ____| |__
mluis 0:45496a70a8a5 4 \____ \| ___ | (_ _) ___ |/ ___) _ \
mluis 0:45496a70a8a5 5 _____) ) ____| | | || |_| ____( (___| | | |
mluis 0:45496a70a8a5 6 (______/|_____)_|_|_| \__)_____)\____)_| |_|
mluis 0:45496a70a8a5 7 (C)2015 Semtech
mluis 0:45496a70a8a5 8
mluis 0:45496a70a8a5 9 Description: Target board general functions implementation
mluis 0:45496a70a8a5 10
mluis 0:45496a70a8a5 11 License: Revised BSD License, see LICENSE.TXT file include in the project
mluis 0:45496a70a8a5 12
mluis 0:45496a70a8a5 13 Maintainer: Miguel Luis and Gregory Cristian
mluis 0:45496a70a8a5 14 */
mluis 0:45496a70a8a5 15 #include "mbed.h"
mluis 0:45496a70a8a5 16 #include "board.h"
mluis 0:45496a70a8a5 17
mluis 1:263aa4ff29cd 18 SX1272MB2xAS Radio( NULL );
mluis 0:45496a70a8a5 19
mluis 6:f9224695ed01 20 /*!
mluis 6:f9224695ed01 21 * Nested interrupt counter.
mluis 6:f9224695ed01 22 *
mluis 6:f9224695ed01 23 * \remark Interrupt should only be fully disabled once the value is 0
mluis 6:f9224695ed01 24 */
mluis 6:f9224695ed01 25 static uint8_t IrqNestLevel = 0;
mluis 6:f9224695ed01 26
mluis 6:f9224695ed01 27 void BoardDisableIrq( void )
mluis 6:f9224695ed01 28 {
mluis 6:f9224695ed01 29 __disable_irq( );
mluis 6:f9224695ed01 30 IrqNestLevel++;
mluis 6:f9224695ed01 31 }
mluis 6:f9224695ed01 32
mluis 6:f9224695ed01 33 void BoardEnableIrq( void )
mluis 6:f9224695ed01 34 {
mluis 6:f9224695ed01 35 IrqNestLevel--;
mluis 6:f9224695ed01 36 if( IrqNestLevel == 0 )
mluis 6:f9224695ed01 37 {
mluis 6:f9224695ed01 38 __enable_irq( );
mluis 6:f9224695ed01 39 }
mluis 6:f9224695ed01 40 }
mluis 6:f9224695ed01 41
mluis 0:45496a70a8a5 42 void BoardInit( void )
mluis 0:45496a70a8a5 43 {
mluis 0:45496a70a8a5 44 TimerTimeCounterInit( );
mluis 0:45496a70a8a5 45 }
mluis 0:45496a70a8a5 46
mluis 0:45496a70a8a5 47
mluis 0:45496a70a8a5 48 uint8_t BoardGetBatteryLevel( void )
mluis 0:45496a70a8a5 49 {
mluis 0:45496a70a8a5 50 return 0xFE;
mluis 0:45496a70a8a5 51 }