mQ Branch for NA mote testing
Dependencies: LoRaWAN-lib SX1272Lib-mQ lib_gps lib_mma8451q lib_mpl3115a2 mbed
Fork of LoRaWAN-NAMote72-Application-Demo by
app/Config.h@0:69f2e28d12c1, 2016-05-17 (annotated)
- Committer:
- ubhat
- Date:
- Tue May 17 00:21:55 2016 +0000
- Revision:
- 0:69f2e28d12c1
- Child:
- 5:6ffeac53b7cb
Project for LoRa Bootcamp
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
ubhat | 0:69f2e28d12c1 | 1 | /* |
ubhat | 0:69f2e28d12c1 | 2 | / _____) _ | | |
ubhat | 0:69f2e28d12c1 | 3 | ( (____ _____ ____ _| |_ _____ ____| |__ |
ubhat | 0:69f2e28d12c1 | 4 | \____ \| ___ | (_ _) ___ |/ ___) _ \ |
ubhat | 0:69f2e28d12c1 | 5 | _____) ) ____| | | || |_| ____( (___| | | | |
ubhat | 0:69f2e28d12c1 | 6 | (______/|_____)_|_|_| \__)_____)\____)_| |_| |
ubhat | 0:69f2e28d12c1 | 7 | (C)2015 Semtech |
ubhat | 0:69f2e28d12c1 | 8 | |
ubhat | 0:69f2e28d12c1 | 9 | Description: End device communication parameters |
ubhat | 0:69f2e28d12c1 | 10 | |
ubhat | 0:69f2e28d12c1 | 11 | License: Revised BSD License, see LICENSE.TXT file include in the project |
ubhat | 0:69f2e28d12c1 | 12 | |
ubhat | 0:69f2e28d12c1 | 13 | Maintainer: Uttam Bhat |
ubhat | 0:69f2e28d12c1 | 14 | */ |
ubhat | 0:69f2e28d12c1 | 15 | |
ubhat | 0:69f2e28d12c1 | 16 | #ifndef __LORA_CONFIG_H__ |
ubhat | 0:69f2e28d12c1 | 17 | #define __LORA_CONFIG_H__ |
ubhat | 0:69f2e28d12c1 | 18 | |
ubhat | 0:69f2e28d12c1 | 19 | /*! |
ubhat | 0:69f2e28d12c1 | 20 | * Configure End-Device to use 8-channels corresponding to Block A |
ubhat | 0:69f2e28d12c1 | 21 | * Comment/Uncomment to disable/enable Hybrid mode |
ubhat | 0:69f2e28d12c1 | 22 | */ |
ubhat | 0:69f2e28d12c1 | 23 | #define USE_BAND_915_HYBRID |
ubhat | 0:69f2e28d12c1 | 24 | |
ubhat | 0:69f2e28d12c1 | 25 | #ifndef USE_BAND_915_HYBRID |
ubhat | 0:69f2e28d12c1 | 26 | /*! |
ubhat | 0:69f2e28d12c1 | 27 | * Configure End-Device to use 64-channels across to Block A thru Block H |
ubhat | 0:69f2e28d12c1 | 28 | */ |
ubhat | 0:69f2e28d12c1 | 29 | #define USE_BAND_915 |
ubhat | 0:69f2e28d12c1 | 30 | |
ubhat | 0:69f2e28d12c1 | 31 | #endif |
ubhat | 0:69f2e28d12c1 | 32 | |
ubhat | 0:69f2e28d12c1 | 33 | /*! |
ubhat | 0:69f2e28d12c1 | 34 | * Join requests trials periodicity. It is the time between RX1/RX2 and next TX |
ubhat | 0:69f2e28d12c1 | 35 | */ |
ubhat | 0:69f2e28d12c1 | 36 | #define OVER_THE_AIR_ACTIVATION_DUTYCYCLE 5000000 // value in us |
ubhat | 0:69f2e28d12c1 | 37 | |
ubhat | 0:69f2e28d12c1 | 38 | /*! |
ubhat | 0:69f2e28d12c1 | 39 | * Defines the application data transmission periodicity. It is the time between RX1/RX2 and next TX |
ubhat | 0:69f2e28d12c1 | 40 | */ |
ubhat | 0:69f2e28d12c1 | 41 | #define APP_TX_DUTYCYCLE 5000000 // value in us |
ubhat | 0:69f2e28d12c1 | 42 | |
ubhat | 0:69f2e28d12c1 | 43 | /*! |
ubhat | 0:69f2e28d12c1 | 44 | * Default mote datarate |
ubhat | 0:69f2e28d12c1 | 45 | * \remark DR_0 : 980 bps; DR_1 : 1760 bps; DR_2 : 3125 bps; DR_3 : 5470 bps; DR_4 : 12500 bps |
ubhat | 0:69f2e28d12c1 | 46 | */ |
ubhat | 0:69f2e28d12c1 | 47 | #define LORAWAN_DEFAULT_DATARATE DR_0 |
ubhat | 0:69f2e28d12c1 | 48 | |
ubhat | 0:69f2e28d12c1 | 49 | /*! |
ubhat | 0:69f2e28d12c1 | 50 | * LoRaWAN confirmed messages |
ubhat | 0:69f2e28d12c1 | 51 | * \remark 1 : Confirmed messages enabled. Must receive ACK from network server |
ubhat | 0:69f2e28d12c1 | 52 | 0 : Confirmed messages disabled. |
ubhat | 0:69f2e28d12c1 | 53 | */ |
ubhat | 0:69f2e28d12c1 | 54 | #define LORAWAN_CONFIRMED_MSG_ON 1 |
ubhat | 0:69f2e28d12c1 | 55 | |
ubhat | 0:69f2e28d12c1 | 56 | /*! |
ubhat | 0:69f2e28d12c1 | 57 | * LoRaWAN Adaptive Data Rate |
ubhat | 0:69f2e28d12c1 | 58 | * |
ubhat | 0:69f2e28d12c1 | 59 | * \remark Please note that when ADR is enabled the end-device uses default datarate of DR_0 |
ubhat | 0:69f2e28d12c1 | 60 | */ |
ubhat | 0:69f2e28d12c1 | 61 | #define LORAWAN_ADR_ON 0 |
ubhat | 0:69f2e28d12c1 | 62 | |
ubhat | 0:69f2e28d12c1 | 63 | /*! |
ubhat | 0:69f2e28d12c1 | 64 | * LoRaWAN application port |
ubhat | 0:69f2e28d12c1 | 65 | */ |
ubhat | 0:69f2e28d12c1 | 66 | #define LORAWAN_APP_PORT 5 |
ubhat | 0:69f2e28d12c1 | 67 | |
ubhat | 0:69f2e28d12c1 | 68 | /*! |
ubhat | 0:69f2e28d12c1 | 69 | * User application data buffer size |
ubhat | 0:69f2e28d12c1 | 70 | */ |
ubhat | 0:69f2e28d12c1 | 71 | #define LORAWAN_APP_DATA_SIZE 11 |
ubhat | 0:69f2e28d12c1 | 72 | |
ubhat | 0:69f2e28d12c1 | 73 | /*! |
ubhat | 0:69f2e28d12c1 | 74 | * LoRaWAN User defined Tx Power |
ubhat | 0:69f2e28d12c1 | 75 | * |
ubhat | 0:69f2e28d12c1 | 76 | * \remark The Tx power level is set as TX_POWER_P_DBM, where 10 <= P <= 30 and P is even value { i.e. P = 10, 12, 14 ... 28 or 30 } |
ubhat | 0:69f2e28d12c1 | 77 | */ |
ubhat | 0:69f2e28d12c1 | 78 | #define LORAWAN_TX_POWER TX_POWER_20_DBM |
ubhat | 0:69f2e28d12c1 | 79 | |
ubhat | 0:69f2e28d12c1 | 80 | #endif // __LORA_CONFIG_H__ |