
Astek
Dependencies: mbed GPS_I2C_astek Sensors LSM9DS1 DigitDisplay Chainable_RGB_LED LoRaWAN-lib SX1272Lib
app/Commissioning.h
- Committer:
- RoddyRod
- Date:
- 2019-12-27
- Revision:
- 10:58fa3853e803
- Parent:
- 9:0083afd69815
File content as of revision 10:58fa3853e803:
/* / _____) _ | | ( (____ _____ ____ _| |_ _____ ____| |__ \____ \| ___ | (_ _) ___ |/ ___) _ \ _____) ) ____| | | || |_| ____( (___| | | | (______/|_____)_|_|_| \__)_____)\____)_| |_| (C)2015 Semtech Description: End device commissioning parameters License: Revised BSD License, see LICENSE.TXT file include in the project Maintainer: Miguel Luis and Gregory Cristian */ #ifndef __LORA_COMMISSIONING_H__ #define __LORA_COMMISSIONING_H__ /*! * When set to 1 the application uses the Over-the-Air activation procedure * When set to 0 the application uses the Personalization activation procedure */ #define OVER_THE_AIR_ACTIVATION 0 /*! * Indicates if the end-device is to be connected to a private or public network */ #define LORAWAN_PUBLIC_NETWORK true /*! * IEEE Organizationally Unique Identifier ( OUI ) (big endian) * \remark This is unique to a company or organization */ #define IEEE_OUI 0x11, 0x22, 0x33 /*! * Mote device IEEE EUI (big endian) */ #define LORAWAN_DEVICE_EUI { 0x00, 0x8F, 0xD4, 0x7D, 0xF8, 0x2D, 0xC8, 0xBC } /*! * Application IEEE EUI (big endian) */ #define LORAWAN_APPLICATION_EUI { 0x70, 0xB3, 0xD5, 0x7E, 0xD0, 0x00, 0xFB, 0xF8 } /*! * AES encryption/decryption cipher application key */ #define LORAWAN_APPLICATION_KEY { 0x87, 0xD3, 0xDC, 0x3E, 0xAD, 0x15, 0xC0, 0x19, 0x6D, 0x1A, 0x72, 0x2F, 0x0C, 0xD8, 0x98, 0x1B } /*! * Current network ID */ #define LORAWAN_NETWORK_ID ( uint32_t )0 /*! * Device address on the network (big endian) */ #define LORAWAN_DEVICE_ADDRESS ( uint32_t )0x26011563 /*! * AES encryption/decryption cipher network session key */ #define LORAWAN_NWKSKEY { 0x03, 0x94, 0x81, 0x56, 0x85, 0xFD, 0xC9, 0xF0, 0xC0, 0x3F, 0x57, 0xF9, 0xB3, 0x04, 0x90, 0x3B } /*! * AES encryption/decryption cipher application session key */ #define LORAWAN_APPSKEY { 0x87, 0xD3, 0xDC, 0x3E, 0xAD, 0x15, 0xC0, 0x19, 0x6D, 0x1A, 0x72, 0x2F, 0x0C, 0xD8, 0x98, 0x1B } #endif // __LORA_COMMISSIONING_H__