26 lines
683 B
Text
26 lines
683 B
Text
#include <lmic.h>
|
|
#include <hal/hal.h>
|
|
#include <SPI.h>
|
|
|
|
#include "settings.h"
|
|
|
|
|
|
// LoRaWAN NwkSKey, network session key
|
|
// This is the default Semtech key, which is used by the early prototype TTN
|
|
// network.
|
|
static const PROGMEM u1_t NWKSKEY[16] = { .... };
|
|
|
|
// LoRaWAN AppSKey, application session key
|
|
// This is the default Semtech key, which is used by the early prototype TTN
|
|
// network.
|
|
static const u1_t PROGMEM APPSKEY[16] = { ..... };
|
|
|
|
// LoRaWAN end-device address (DevAddr)
|
|
static const u4_t DEVADDR = 0x....; // <-- Change this address for every node!
|
|
|
|
const lmic_pinmap lmic_pins = {
|
|
.nss = PIN_SPI_CS_RFM95,
|
|
.rxtx = LMIC_UNUSED_PIN,
|
|
.rst = 9,
|
|
.dio = {2, 6, 7},
|
|
};
|