application layer with: button, LED, pot, tempSense

Dependencies:   mbed SX1272Lib

Fork of LoRaWAN-demo-72-bootcamp by Semtech

Use with sx1272 shield with grove peripherals connected:

D8 D9: ButtonRX TXA3 A4: TempSense
D6 D7:SCL SDA : LEDA1 A2: Pot

Button

Sends to different payloads: short press (under 1 sec)
long press: held down > 1 sec.

serial console keys

115200bps, 8N1
Enter key not used
Keys '0' to '3': cayenne channel number
'0': pot (rotary sensor)
'1': temperature
' 2': digital out
'3': analog out

Committer:
mluis
Date:
Mon Apr 24 13:31:49 2017 +0000
Revision:
9:0083afd69815
Parent:
1:263aa4ff29cd
WARNING: Radio API timings changed from micro-seconds to milliseconds; ; Synchronized with https://github.com/Lora-net/LoRaMac-node git revision e506c246652fa44c3f24cecb89d0707b49ece739; Updated all libraries to the latest versions

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 9:0083afd69815 20 /*!
mluis 9:0083afd69815 21 * Nested interrupt counter.
mluis 9:0083afd69815 22 *
mluis 9:0083afd69815 23 * \remark Interrupt should only be fully disabled once the value is 0
mluis 9:0083afd69815 24 */
mluis 9:0083afd69815 25 static uint8_t IrqNestLevel = 0;
mluis 9:0083afd69815 26
mluis 9:0083afd69815 27 void BoardDisableIrq( void )
mluis 9:0083afd69815 28 {
mluis 9:0083afd69815 29 __disable_irq( );
mluis 9:0083afd69815 30 IrqNestLevel++;
mluis 9:0083afd69815 31 }
mluis 9:0083afd69815 32
mluis 9:0083afd69815 33 void BoardEnableIrq( void )
mluis 9:0083afd69815 34 {
mluis 9:0083afd69815 35 IrqNestLevel--;
mluis 9:0083afd69815 36 if( IrqNestLevel == 0 )
mluis 9:0083afd69815 37 {
mluis 9:0083afd69815 38 __enable_irq( );
mluis 9:0083afd69815 39 }
mluis 9:0083afd69815 40 }
mluis 9:0083afd69815 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 }