Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: X_NUCLEO_IKS01A2 driver_mbed_TH02 mbed LoRaWAN-lib-v1_0_1 SX1272Lib
Fork of Training-Aug2018-SX1272-X-NUCLEO-IKS01A2 by
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 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 #if( OVER_THE_AIR_ACTIVATION != 0 ) 00030 00031 /*! 00032 * Mote device IEEE OUI (big endian) 00033 * \remark This is unique to a company or organization 00034 */ 00035 #define IEEE_OUI 0xFF, 0xFF, 0xFF 00036 00037 /*! 00038 * Mote device IEEE EUI (big endian) 00039 * 00040 * \remark In this application, if the last 4 bytes are all 0, then the 32 bit address is automatically generated using a pseudo random generator seeded with a value derived from BoardUniqueId value 00041 * If provided by user, e.g. { IEEE_OUI, 0x00, 0x00, 0x00, 0xFF, 0x01 }, then this value is used by the application 00042 */ 00043 #define LORAWAN_DEVICE_EUI { IEEE_OUI, 0x00, 0x00, 0x00, 0x00, 0x00 } 00044 00045 /*! 00046 * Application IEEE EUI (big endian) 00047 */ 00048 #define LORAWAN_APPLICATION_EUI { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 } 00049 00050 /*! 00051 * AES encryption/decryption cipher application key 00052 */ 00053 #define LORAWAN_APPLICATION_KEY { 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff } 00054 00055 #else 00056 00057 /*! 00058 * Device address on the network (big endian) 00059 * 00060 * \remark In this application, if the value is 0, then the address is automatically generated using a pseudo random generator seeded with a value derived from BoardUniqueId value 00061 * If provided by user, e.g. 0x78563412, then this value is used by the application 00062 */ 00063 #define LORAWAN_DEVICE_ADDRESS ( uint32_t )0x0 00064 00065 /*! 00066 * AES encryption/decryption cipher network session key 00067 */ 00068 #define LORAWAN_NWKSKEY { 0x2B, 0x7E, 0x15, 0x16, 0x28, 0xAE, 0xD2, 0xA6, 0xAB, 0xF7, 0x15, 0x88, 0x09, 0xCF, 0x4F, 0x3C } 00069 00070 /*! 00071 * AES encryption/decryption cipher application session key 00072 */ 00073 #define LORAWAN_APPSKEY { 0x2B, 0x7E, 0x15, 0x16, 0x28, 0xAE, 0xD2, 0xA6, 0xAB, 0xF7, 0x15, 0x88, 0x09, 0xCF, 0x4F, 0x3C } 00074 00075 #endif 00076 00077 00078 #endif // __LORA_COMISSIONING_H__
Generated on Tue Jul 12 2022 20:36:27 by
1.7.2
