1
Dependencies: X_NUCLEO_IKS01A1 LoRaWAN-lib SX1276Lib mbed
app/Comissioning.h@8:88e8a1c7b88a, 2018-11-09 (annotated)
- Committer:
- emerette
- Date:
- Fri Nov 09 21:52:19 2018 +0000
- Revision:
- 8:88e8a1c7b88a
- Parent:
- 6:711a4e008afa
1
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
ubhat | 0:42863a11464a | 1 | /* |
ubhat | 0:42863a11464a | 2 | / _____) _ | | |
ubhat | 0:42863a11464a | 3 | ( (____ _____ ____ _| |_ _____ ____| |__ |
ubhat | 0:42863a11464a | 4 | \____ \| ___ | (_ _) ___ |/ ___) _ \ |
ubhat | 0:42863a11464a | 5 | _____) ) ____| | | || |_| ____( (___| | | | |
ubhat | 0:42863a11464a | 6 | (______/|_____)_|_|_| \__)_____)\____)_| |_| |
ubhat | 0:42863a11464a | 7 | (C)2015 Semtech |
ubhat | 0:42863a11464a | 8 | |
ubhat | 0:42863a11464a | 9 | Description: End device comissioning parameters |
ubhat | 0:42863a11464a | 10 | |
ubhat | 0:42863a11464a | 11 | License: Revised BSD License, see LICENSE.TXT file include in the project |
ubhat | 0:42863a11464a | 12 | |
ubhat | 0:42863a11464a | 13 | Maintainer: Miguel Luis and Gregory Cristian |
ubhat | 0:42863a11464a | 14 | */ |
ubhat | 0:42863a11464a | 15 | #ifndef __LORA_COMISSIONING_H__ |
ubhat | 0:42863a11464a | 16 | #define __LORA_COMISSIONING_H__ |
ubhat | 0:42863a11464a | 17 | |
ubhat | 0:42863a11464a | 18 | /*! |
ubhat | 0:42863a11464a | 19 | * When set to 1 the application uses the Over-the-Air activation procedure |
ubhat | 0:42863a11464a | 20 | * When set to 0 the application uses the Personalization activation procedure |
ubhat | 0:42863a11464a | 21 | */ |
ubhat | 6:711a4e008afa | 22 | #define OVER_THE_AIR_ACTIVATION 0 |
ubhat | 0:42863a11464a | 23 | |
ubhat | 0:42863a11464a | 24 | /*! |
ubhat | 0:42863a11464a | 25 | * Indicates if the end-device is to be connected to a private or public network |
ubhat | 0:42863a11464a | 26 | */ |
ubhat | 0:42863a11464a | 27 | #define LORAWAN_PUBLIC_NETWORK true |
ubhat | 0:42863a11464a | 28 | |
ubhat | 0:42863a11464a | 29 | #if( OVER_THE_AIR_ACTIVATION != 0 ) |
ubhat | 0:42863a11464a | 30 | |
ubhat | 0:42863a11464a | 31 | /*! |
ubhat | 0:42863a11464a | 32 | * Mote device IEEE OUI (big endian) |
ubhat | 0:42863a11464a | 33 | * \remark This is unique to a company or organization |
ubhat | 0:42863a11464a | 34 | */ |
emerette | 8:88e8a1c7b88a | 35 | #define IEEE_OUI 0x99, 0x99, 0x99 |
ubhat | 0:42863a11464a | 36 | |
ubhat | 0:42863a11464a | 37 | /*! |
ubhat | 0:42863a11464a | 38 | * Mote device IEEE EUI (big endian) |
ubhat | 0:42863a11464a | 39 | * |
ubhat | 0:42863a11464a | 40 | * \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 |
ubhat | 0:42863a11464a | 41 | * If provided by user, e.g. { IEEE_OUI, 0x00, 0x00, 0x00, 0xFF, 0x01 }, then this value is used by the application |
ubhat | 0:42863a11464a | 42 | */ |
emerette | 8:88e8a1c7b88a | 43 | #define LORAWAN_DEVICE_EUI { IEEE_OUI, 0x06, 0x07, 0x08 0x09, 0xFF } |
ubhat | 0:42863a11464a | 44 | |
ubhat | 0:42863a11464a | 45 | /*! |
ubhat | 0:42863a11464a | 46 | * Application IEEE EUI (big endian) |
ubhat | 0:42863a11464a | 47 | */ |
ubhat | 0:42863a11464a | 48 | #define LORAWAN_APPLICATION_EUI { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 } |
ubhat | 0:42863a11464a | 49 | |
ubhat | 0:42863a11464a | 50 | /*! |
ubhat | 0:42863a11464a | 51 | * AES encryption/decryption cipher application key |
ubhat | 0:42863a11464a | 52 | */ |
ubhat | 0:42863a11464a | 53 | #define LORAWAN_APPLICATION_KEY { 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff } |
ubhat | 0:42863a11464a | 54 | |
ubhat | 0:42863a11464a | 55 | #else |
ubhat | 0:42863a11464a | 56 | |
ubhat | 0:42863a11464a | 57 | /*! |
ubhat | 0:42863a11464a | 58 | * Device address on the network (big endian) |
ubhat | 0:42863a11464a | 59 | * |
ubhat | 0:42863a11464a | 60 | * \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 |
ubhat | 0:42863a11464a | 61 | * If provided by user, e.g. 0x78563412, then this value is used by the application |
ubhat | 0:42863a11464a | 62 | */ |
emerette | 8:88e8a1c7b88a | 63 | #define LORAWAN_DEVICE_ADDRESS ( uint32_t )0x06070809 |
ubhat | 0:42863a11464a | 64 | |
ubhat | 0:42863a11464a | 65 | /*! |
ubhat | 0:42863a11464a | 66 | * AES encryption/decryption cipher network session key |
ubhat | 0:42863a11464a | 67 | */ |
emerette | 8:88e8a1c7b88a | 68 | #define LORAWAN_NWKSKEY { 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff } |
ubhat | 0:42863a11464a | 69 | |
ubhat | 0:42863a11464a | 70 | /*! |
ubhat | 0:42863a11464a | 71 | * AES encryption/decryption cipher application session key |
ubhat | 0:42863a11464a | 72 | */ |
emerette | 8:88e8a1c7b88a | 73 | #define LORAWAN_APPSKEY { 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff } |
ubhat | 0:42863a11464a | 74 | |
ubhat | 0:42863a11464a | 75 | #endif |
ubhat | 0:42863a11464a | 76 | |
ubhat | 0:42863a11464a | 77 | |
ubhat | 0:42863a11464a | 78 | #endif // __LORA_COMISSIONING_H__ |