guiguitant théo / lorawan-master

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Commissioning.h Source File

Commissioning.h

00001 /*
00002  / _____)             _              | |
00003 ( (____  _____ ____ _| |_ _____  ____| |__
00004  \____ \| ___ |    (_   _) ___ |/ ___)  _ \
00005  _____) ) ____| | | || |_| ____( (___| | | |
00006 (______/|_____)_|_|_| \__)_____)\____)_| |_|
00007     (C)2015 Semtech
00008 
00009 Description: End device commissioning 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_COMMISSIONING_H__
00016 #define __LORA_COMMISSIONING_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                     1
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 /*!
00030  * IEEE Organizationally Unique Identifier ( OUI ) (big endian)
00031  * \remark This is unique to a company or organization
00032  */
00033 #define IEEE_OUI                                    0x11, 0x22, 0x23
00034 
00035 /*!
00036  * Mote device IEEE EUI (big endian)
00037  */
00038 #define LORAWAN_DEVICE_EUI                          { 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11 }
00039 
00040 /*!
00041  * Application IEEE EUI (big endian)
00042  */
00043 #define LORAWAN_APPLICATION_EUI                     { 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11 }
00044 
00045 /*!
00046  * AES encryption/decryption cipher application key
00047  */
00048 #define LORAWAN_APPLICATION_KEY                     { 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11 }
00049 
00050 /*!
00051  * Current network ID
00052  */
00053 #define LORAWAN_NETWORK_ID                          ( uint32_t )0
00054 
00055 /*!
00056  * Device address on the network (big endian)
00057  */
00058 #define LORAWAN_DEVICE_ADDRESS                      ( uint32_t )0x260115E8
00059 
00060 /*!
00061  * AES encryption/decryption cipher network session key
00062  */
00063 #define LORAWAN_NWKSKEY                             { 0x99, 0x9A, 0xD8, 0xAF, 0x5F, 0x5F, 0xA5, 0x75, 0x24, 0x9A, 0xC4, 0x62, 0x0D, 0xD0, 0xDF, 0xAB }
00064 /*!
00065  * AES encryption/decryption cipher application session key
00066  */
00067 #define LORAWAN_APPSKEY                             { 0x11, 0x29, 0xCB, 0x33, 0x8E, 0xDE, 0x39, 0x86, 0x56, 0x7C, 0x63, 0xA0, 0x41, 0xAC, 0x20, 0x6D }
00068 #endif // __LORA_COMMISSIONING_H__