2019-06-24 13:47:14 +00:00
|
|
|
#include <lmic.h>
|
|
|
|
#include <hal/hal.h>
|
|
|
|
#include <SPI.h>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Don't edit this file - you want to make a copy of settings.custom.cpp, call
|
|
|
|
* it settings.cpp, and edit that instead.
|
|
|
|
*/
|
|
|
|
|
2019-07-15 12:49:44 +00:00
|
|
|
// The network session key. From The Things Network console
|
2019-06-24 13:47:14 +00:00
|
|
|
extern const PROGMEM u1_t NWKSKEY[16];
|
2019-07-15 12:49:44 +00:00
|
|
|
// The application session key from The Things Network console
|
2019-06-24 13:47:14 +00:00
|
|
|
extern const u1_t PROGMEM APPSKEY[16];
|
2019-07-15 12:49:44 +00:00
|
|
|
// The device address
|
2019-06-24 13:47:14 +00:00
|
|
|
extern const u4_t DEVADDR;
|
|
|
|
|
2019-07-15 12:49:44 +00:00
|
|
|
// The pin mapping for the RFM95
|
2019-06-24 13:47:14 +00:00
|
|
|
extern const lmic_pinmap lmic_pins;
|
2019-07-15 12:49:44 +00:00
|
|
|
|
|
|
|
// The key to encrypt the data with
|
|
|
|
extern uint8_t encrypt_key[16];
|