test harness

Dependencies:   LoRaWAN-NAMote72-Application-Demo LoRaWAN-lib2 SX1272Lib lib_gps lib_mma8451q lib_mpl3115a2 mbed

Fork of LoRaWAN-NAMote72-Application-Demo by Semtech

Committer:
billvs
Date:
Wed Nov 08 14:21:52 2017 +0000
Revision:
16:3aa2e2bf34c3
Parent:
9:617844f7fdb1
changes for test harnes

Who changed what in which revision?

UserRevisionLine numberNew 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
ubhat 0:69f2e28d12c1 9 Description: End device comissioning 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 */
ubhat 0:69f2e28d12c1 15 #ifndef __LORA_COMISSIONING_H__
ubhat 0:69f2e28d12c1 16 #define __LORA_COMISSIONING_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 */
ubhat 0:69f2e28d12c1 22 #define OVER_THE_AIR_ACTIVATION 1
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 #if( OVER_THE_AIR_ACTIVATION != 0 )
ubhat 0:69f2e28d12c1 30
ubhat 0:69f2e28d12c1 31 /*!
ubhat 0:69f2e28d12c1 32 * Mote device IEEE OUI (big endian)
ubhat 0:69f2e28d12c1 33 * \remark This is unique to a company or organization
ubhat 0:69f2e28d12c1 34 */
ubhat 0:69f2e28d12c1 35 #define IEEE_OUI 0x00, 0x00, 0x00
ubhat 0:69f2e28d12c1 36
ubhat 0:69f2e28d12c1 37 /*!
ubhat 0:69f2e28d12c1 38 * Mote device IEEE EUI (big endian)
ubhat 0:69f2e28d12c1 39 *
ubhat 0:69f2e28d12c1 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:69f2e28d12c1 41 * If provided by user, e.g. { IEEE_OUI, 0x00, 0x00, 0x00, 0xFF, 0x01 }, then this value is used by the application
ubhat 0:69f2e28d12c1 42 */
ubhat 0:69f2e28d12c1 43 #define LORAWAN_DEVICE_EUI { IEEE_OUI, 0x00, 0x00, 0x00, 0x00, 0x00 }
billvs 16:3aa2e2bf34c3 44 //#define LORAWAN_DEVICE_EUI { IEEE_OUI, 0x00, 0x3D, 0x03, 0x4A, 0x33 }
ubhat 0:69f2e28d12c1 45
ubhat 0:69f2e28d12c1 46 /*!
ubhat 0:69f2e28d12c1 47 * Application IEEE EUI (big endian)
ubhat 0:69f2e28d12c1 48 */
ubhat 0:69f2e28d12c1 49 #define LORAWAN_APPLICATION_EUI { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }
billvs 16:3aa2e2bf34c3 50 //#define LORAWAN_APPLICATION_EUI { 0xCA, 0xB1, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00 }
ubhat 0:69f2e28d12c1 51
ubhat 0:69f2e28d12c1 52 /*!
ubhat 0:69f2e28d12c1 53 * AES encryption/decryption cipher application key
ubhat 0:69f2e28d12c1 54 */
ubhat 0:69f2e28d12c1 55 #define LORAWAN_APPLICATION_KEY { 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff }
billvs 16:3aa2e2bf34c3 56 //#define LORAWAN_APPLICATION_KEY { 0x2B, 0x7E, 0x15, 0x16, 0x28, 0xAE, 0xD2, 0xA6, 0xAB, 0xF7, 0x15, 0x88, 0x09, 0xCF, 0x4F, 0x3C }
billvs 16:3aa2e2bf34c3 57 //#define LORAWAN_APPLICATION_KEY { 0x6c, 0xe4, 0x98, 0x66, 0x50, 0xd6, 0x0c, 0x36, 0x4a, 0x54, 0x6a, 0xb5, 0xfe, 0xfe, 0x5f, 0x81 }
ubhat 0:69f2e28d12c1 58
ubhat 0:69f2e28d12c1 59 #else
ubhat 0:69f2e28d12c1 60
ubhat 0:69f2e28d12c1 61 /*!
ubhat 0:69f2e28d12c1 62 * Device address on the network (big endian)
ubhat 0:69f2e28d12c1 63 *
ubhat 0:69f2e28d12c1 64 * \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:69f2e28d12c1 65 * If provided by user, e.g. 0x78563412, then this value is used by the application
ubhat 0:69f2e28d12c1 66 */
ubhat 0:69f2e28d12c1 67 #define LORAWAN_DEVICE_ADDRESS ( uint32_t )0x0
ubhat 0:69f2e28d12c1 68
ubhat 0:69f2e28d12c1 69 /*!
ubhat 0:69f2e28d12c1 70 * AES encryption/decryption cipher network session key
ubhat 0:69f2e28d12c1 71 */
ubhat 0:69f2e28d12c1 72 #define LORAWAN_NWKSKEY { 0x2B, 0x7E, 0x15, 0x16, 0x28, 0xAE, 0xD2, 0xA6, 0xAB, 0xF7, 0x15, 0x88, 0x09, 0xCF, 0x4F, 0x3C }
ubhat 0:69f2e28d12c1 73
ubhat 0:69f2e28d12c1 74 /*!
ubhat 0:69f2e28d12c1 75 * AES encryption/decryption cipher application session key
ubhat 0:69f2e28d12c1 76 */
ubhat 0:69f2e28d12c1 77 #define LORAWAN_APPSKEY { 0x2B, 0x7E, 0x15, 0x16, 0x28, 0xAE, 0xD2, 0xA6, 0xAB, 0xF7, 0x15, 0x88, 0x09, 0xCF, 0x4F, 0x3C }
ubhat 0:69f2e28d12c1 78
ubhat 0:69f2e28d12c1 79 #endif
ubhat 0:69f2e28d12c1 80
ubhat 0:69f2e28d12c1 81
ubhat 0:69f2e28d12c1 82 #endif // __LORA_COMISSIONING_H__