Amir Chaudhary
/
LoRaWAN-hello-world_new_mcu_Anish
new code ani
board/board.cpp@1:352f608c3337, 2015-11-26 (annotated)
- Committer:
- mluis
- Date:
- Thu Nov 26 12:59:52 2015 +0000
- Revision:
- 1:352f608c3337
- Parent:
- 0:92bca02df485
- Child:
- 9:ee9dcbb9708d
Changed application architecture to mimic GitHub LoRaMac-node repository.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
mluis | 0:92bca02df485 | 1 | /* |
mluis | 0:92bca02df485 | 2 | / _____) _ | | |
mluis | 0:92bca02df485 | 3 | ( (____ _____ ____ _| |_ _____ ____| |__ |
mluis | 0:92bca02df485 | 4 | \____ \| ___ | (_ _) ___ |/ ___) _ \ |
mluis | 0:92bca02df485 | 5 | _____) ) ____| | | || |_| ____( (___| | | | |
mluis | 0:92bca02df485 | 6 | (______/|_____)_|_|_| \__)_____)\____)_| |_| |
mluis | 0:92bca02df485 | 7 | (C)2015 Semtech |
mluis | 0:92bca02df485 | 8 | |
mluis | 0:92bca02df485 | 9 | Description: Target board general functions implementation |
mluis | 0:92bca02df485 | 10 | |
mluis | 0:92bca02df485 | 11 | License: Revised BSD License, see LICENSE.TXT file include in the project |
mluis | 0:92bca02df485 | 12 | |
mluis | 0:92bca02df485 | 13 | Maintainer: Miguel Luis and Gregory Cristian |
mluis | 0:92bca02df485 | 14 | */ |
mluis | 0:92bca02df485 | 15 | #include "mbed.h" |
mluis | 0:92bca02df485 | 16 | #include "board.h" |
mluis | 0:92bca02df485 | 17 | |
mluis | 1:352f608c3337 | 18 | SX1276MB1xAS Radio( NULL ); |
mluis | 1:352f608c3337 | 19 | |
mluis | 0:92bca02df485 | 20 | void BoardInit( void ) |
mluis | 0:92bca02df485 | 21 | { |
mluis | 0:92bca02df485 | 22 | TimerTimeCounterInit( ); |
mluis | 0:92bca02df485 | 23 | } |
mluis | 0:92bca02df485 | 24 | |
mluis | 0:92bca02df485 | 25 | |
mluis | 1:352f608c3337 | 26 | uint8_t BoardGetBatteryLevel( void ) |
mluis | 0:92bca02df485 | 27 | { |
mluis | 0:92bca02df485 | 28 | return 0xFE; |
mluis | 0:92bca02df485 | 29 | } |