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/Commissioning.h@19:e136bd75eabd, 2018-03-30 (annotated)
- Committer:
- Benedict_Tizzano
- Date:
- Fri Mar 30 19:02:45 2018 +0000
- Revision:
- 19:e136bd75eabd
- Parent:
- 18:18408c3c2d0c
mQ Branch
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 | |
mluis | 18:18408c3c2d0c | 9 | Description: End device commissioning 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: Miguel Luis and Gregory Cristian |
ubhat | 0:69f2e28d12c1 | 14 | */ |
mluis | 18:18408c3c2d0c | 15 | #ifndef __LORA_COMMISSIONING_H__ |
mluis | 18:18408c3c2d0c | 16 | #define __LORA_COMMISSIONING_H__ |
ubhat | 0:69f2e28d12c1 | 17 | |
ubhat | 0:69f2e28d12c1 | 18 | /*! |
ubhat | 0:69f2e28d12c1 | 19 | * When set to 1 the application uses the Over-the-Air activation procedure |
ubhat | 0:69f2e28d12c1 | 20 | * When set to 0 the application uses the Personalization activation procedure |
ubhat | 0:69f2e28d12c1 | 21 | */ |
Benedict_Tizzano | 19:e136bd75eabd | 22 | #define OVER_THE_AIR_ACTIVATION 0 |
ubhat | 0:69f2e28d12c1 | 23 | |
ubhat | 0:69f2e28d12c1 | 24 | /*! |
ubhat | 0:69f2e28d12c1 | 25 | * Indicates if the end-device is to be connected to a private or public network |
ubhat | 0:69f2e28d12c1 | 26 | */ |
ubhat | 0:69f2e28d12c1 | 27 | #define LORAWAN_PUBLIC_NETWORK true |
ubhat | 0:69f2e28d12c1 | 28 | |
ubhat | 0:69f2e28d12c1 | 29 | /*! |
mluis | 18:18408c3c2d0c | 30 | * IEEE Organizationally Unique Identifier ( OUI ) (big endian) |
ubhat | 0:69f2e28d12c1 | 31 | * \remark This is unique to a company or organization |
ubhat | 0:69f2e28d12c1 | 32 | */ |
Benedict_Tizzano | 19:e136bd75eabd | 33 | #define IEEE_OUI 0x40, 0x55, 0x40 |
ubhat | 0:69f2e28d12c1 | 34 | |
ubhat | 0:69f2e28d12c1 | 35 | /*! |
ubhat | 0:69f2e28d12c1 | 36 | * Mote device IEEE EUI (big endian) |
ubhat | 0:69f2e28d12c1 | 37 | * |
mluis | 18:18408c3c2d0c | 38 | * \remark In this application, if the last 4 bytes are all 0, then the 32 bit |
mluis | 18:18408c3c2d0c | 39 | * address is automatically generated using a pseudo random generator |
mluis | 18:18408c3c2d0c | 40 | * seeded with a value derived from BoardUniqueId value |
mluis | 18:18408c3c2d0c | 41 | * If provided by user, e.g. { IEEE_OUI, 0x00, 0x00, 0x00, 0xFF, 0x01 }, |
mluis | 18:18408c3c2d0c | 42 | * then this value is used by the application |
ubhat | 0:69f2e28d12c1 | 43 | */ |
Benedict_Tizzano | 19:e136bd75eabd | 44 | #define LORAWAN_DEVICE_EUI { IEEE_OUI, 0x55, 0x40, 0x55, 0x40, 0x56 } |
ubhat | 0:69f2e28d12c1 | 45 | |
ubhat | 0:69f2e28d12c1 | 46 | /*! |
ubhat | 0:69f2e28d12c1 | 47 | * Application IEEE EUI (big endian) |
ubhat | 0:69f2e28d12c1 | 48 | */ |
Benedict_Tizzano | 19:e136bd75eabd | 49 | #define LORAWAN_APPLICATION_EUI { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C } |
ubhat | 0:69f2e28d12c1 | 50 | |
ubhat | 0:69f2e28d12c1 | 51 | /*! |
ubhat | 0:69f2e28d12c1 | 52 | * AES encryption/decryption cipher application key |
ubhat | 0:69f2e28d12c1 | 53 | */ |
ubhat | 0:69f2e28d12c1 | 54 | #define LORAWAN_APPLICATION_KEY { 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff } |
ubhat | 0:69f2e28d12c1 | 55 | |
ubhat | 0:69f2e28d12c1 | 56 | /*! |
ubhat | 0:69f2e28d12c1 | 57 | * Device address on the network (big endian) |
ubhat | 0:69f2e28d12c1 | 58 | * |
mluis | 18:18408c3c2d0c | 59 | * \remark In this application, if the value is 0, then the address is |
mluis | 18:18408c3c2d0c | 60 | * automatically generated using a pseudo random generator seeded with |
mluis | 18:18408c3c2d0c | 61 | * a value derived from BoardUniqueId value if provided by user, |
mluis | 18:18408c3c2d0c | 62 | * e.g. 0x78563412, then this value is used by the application |
ubhat | 0:69f2e28d12c1 | 63 | */ |
Benedict_Tizzano | 19:e136bd75eabd | 64 | #define LORAWAN_DEVICE_ADDRESS ( uint32_t )0x40554056 |
ubhat | 0:69f2e28d12c1 | 65 | |
ubhat | 0:69f2e28d12c1 | 66 | /*! |
ubhat | 0:69f2e28d12c1 | 67 | * AES encryption/decryption cipher network session key |
ubhat | 0:69f2e28d12c1 | 68 | */ |
Benedict_Tizzano | 19:e136bd75eabd | 69 | #define LORAWAN_NWKSKEY { 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xAA, 0xBB, 0xCC, 0xDD, 0xEE, 0xFF } |
ubhat | 0:69f2e28d12c1 | 70 | |
ubhat | 0:69f2e28d12c1 | 71 | /*! |
ubhat | 0:69f2e28d12c1 | 72 | * AES encryption/decryption cipher application session key |
ubhat | 0:69f2e28d12c1 | 73 | */ |
Benedict_Tizzano | 19:e136bd75eabd | 74 | #define LORAWAN_APPSKEY { 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xAA, 0xBB, 0xCC, 0xDD, 0xEE, 0xFF } |
ubhat | 0:69f2e28d12c1 | 75 | |
mluis | 18:18408c3c2d0c | 76 | #endif // __LORA_COMMISSIONING_H__ |