for India band 30dBm LoRa Module, DSPLoRa based on code from Semtech and as modified by Sachin Pukale/ TCL/

Dependencies:   mbed Chainable_RGB_LED DigitDisplay LoRaWAN-lib SX1276Lib

Fork of DSP_LoRaWAN by Akshay Mishra

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Comissioning.h Source File

Comissioning.h

00001 /*
00002  / _____)             _              | |
00003 ( (____  _____ ____ _| |_ _____  ____| |__
00004  \____ \| ___ |    (_   _) ___ |/ ___)  _ \
00005  _____) ) ____| | | || |_| ____( (___| | | |
00006 (______/|_____)_|_|_| \__)_____)\____)_| |_|
00007     (C)2015 Semtech
00008 
00009 Description: End device comissioning parameters
00010 
00011 License: Revised BSD License, see LICENSE.TXT file include in the project
00012 
00013 Maintainer: Miguel Luis and Gregory Cristian
00014 */
00015 #ifndef __LORA_COMISSIONING_H__
00016 #define __LORA_COMISSIONING_H__
00017 
00018 /*!
00019  * When set to 1 the application uses the Over-the-Air activation procedure
00020  * When set to 0 the application uses the Personalization activation procedure
00021  */
00022 #define OVER_THE_AIR_ACTIVATION                     0
00023 
00024 /*!
00025  * Indicates if the end-device is to be connected to a private or public network
00026  */
00027 #define LORAWAN_PUBLIC_NETWORK                      true
00028 
00029 #if( OVER_THE_AIR_ACTIVATION != 0 )
00030 
00031 /*!
00032  * Mote device IEEE EUI (big endian)
00033  */
00034 #define LORAWAN_DEVICE_EUI                          { 0xDE, 0xED, 0xBE, 0xEF, 0x00, 0x00, 0x00, 0x01 } //{ 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88 }
00035 
00036 /*!
00037  * Application IEEE EUI (big endian)
00038  */
00039 #define LORAWAN_APPLICATION_EUI                     { 0xDE, 0xED, 0xBE, 0xEF, 0x00, 0x00, 0x00, 0x01 } //{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }
00040 
00041 /*!
00042  * AES encryption/decryption cipher application key
00043  */
00044 #define LORAWAN_APPLICATION_KEY                     { 0xFF, 0x64, 0xE3, 0xBC, 0x6A, 0x50, 0x11, 0x69, 0x4F, 0x84, 0x41, 0x5D, 0x11, 0x45, 0x4E, 0x60 } //{ 0x2B, 0x7E, 0x15, 0x16, 0x28, 0xAE, 0xD2, 0xA6, 0xAB, 0xF7, 0x15, 0x88, 0x09, 0xCF, 0x4F, 0x3C }
00045 
00046 
00047 #else
00048 
00049 /*!
00050  * Current network ID
00051  */
00052 #define LORAWAN_NETWORK_ID                          ( uint32_t )0
00053 
00054 /*!
00055  * Device address on the network (big endian)
00056  */
00057 #define LORAWAN_DEVICE_ADDRESS                      ( uint32_t )0x2200042
00058 
00059 /*!
00060  * AES encryption/decryption cipher network session key
00061  */
00062 //#define LORAWAN_NWKSKEY                             { 0x2B, 0x7E, 0x15, 0x16, 0x28, 0xAE, 0xD2, 0xA6, 0xAB, 0xF7, 0x15, 0x88, 0x09, 0xCF, 0x4F, 0x3C }
00063 #define LORAWAN_NWKSKEY                               { 0xd4,0x89,0xa4,0x95,0x6a,0xb7,0x84,0x58,0xdf,0x8f,0xaf,0x16,0x02,0x6c,0x22,0xe8}
00064 
00065 /*!
00066  * AES encryption/decryption cipher application session key
00067  */
00068 //#define LORAWAN_APPSKEY                             { 0x2B, 0x7E, 0x15, 0x16, 0x28, 0xAE, 0xD2, 0xA6, 0xAB, 0xF7, 0x15, 0x88, 0x09, 0xCF, 0x4F, 0x3C }
00069 #define LORAWAN_APPSKEY                       { 0x42,0x5C,0xAA,0x31,0x2E,0xFE,0x4B,0x32,0xA5,0xEB,0xC2,0x02,0xE8,0xCD,0x16,0xBF} //{ 0x2B, 0x7E, 0x15, 0x16, 0x28, 0xAE, 0xD2, 0xA6, 0xAB, 0xF7, 0x15, 0x88, 0x09, 0xCF, 0x4F, 0x3C }
00070 
00071 #endif
00072 
00073 #endif // __LORA_COMISSIONING_H__