2018-03-18 19:45:17 +01:00
|
|
|
// Basic Config
|
|
|
|
#include "globals.h"
|
|
|
|
|
|
|
|
// LMIC-Arduino LoRaWAN Stack
|
2018-03-21 18:03:14 +01:00
|
|
|
#include "loraconf.h"
|
2018-03-18 19:45:17 +01:00
|
|
|
#include <lmic.h>
|
|
|
|
#include <hal/hal.h>
|
|
|
|
|
2018-04-04 01:26:05 +02:00
|
|
|
#ifdef MCP_24AA02E64_I2C_ADDRESS
|
2018-04-05 21:47:43 +02:00
|
|
|
#include <Wire.h> // Needed for 24AA02E64, does not hurt anything if included and not used
|
2018-04-04 01:26:05 +02:00
|
|
|
#endif
|
|
|
|
|
2018-03-18 19:45:17 +01:00
|
|
|
// Local logging Tag
|
|
|
|
static const char *TAG = "lorawan";
|
|
|
|
|
|
|
|
// function defined in main.cpp
|
|
|
|
void set_onboard_led(int state);
|
|
|
|
|
|
|
|
// functions defined in rcommand.cpp
|
|
|
|
void rcommand(int cmd, int arg);
|
|
|
|
void switch_lora(int sf, int tx);
|
|
|
|
|
|
|
|
// DevEUI generator using devices's MAC address
|
|
|
|
void gen_lora_deveui(uint8_t *pdeveui) {
|
|
|
|
uint8_t *p = pdeveui, dmac[6];
|
|
|
|
int i = 0;
|
|
|
|
esp_efuse_mac_get_default(dmac);
|
|
|
|
// deveui is LSB, we reverse it so TTN DEVEUI display
|
|
|
|
// will remain the same as MAC address
|
|
|
|
// MAC is 6 bytes, devEUI 8, set first 2 ones
|
|
|
|
// with an arbitrary value
|
|
|
|
*p++ = 0xFF;
|
|
|
|
*p++ = 0xFE;
|
|
|
|
// Then next 6 bytes are mac address reversed
|
2018-04-04 01:26:05 +02:00
|
|
|
for ( i=0; i<6 ; i++) {
|
|
|
|
*p++ = dmac[5-i];
|
|
|
|
}
|
2018-03-18 19:45:17 +01:00
|
|
|
}
|
|
|
|
|
2018-03-21 22:32:59 +01:00
|
|
|
// Function to do a byte swap in a byte array
|
|
|
|
void RevBytes(unsigned char* b, size_t c)
|
|
|
|
{
|
|
|
|
u1_t i;
|
|
|
|
for (i = 0; i < c / 2; i++)
|
|
|
|
{ unsigned char t = b[i];
|
|
|
|
b[i] = b[c - 1 - i];
|
|
|
|
b[c - 1 - i] = t; }
|
|
|
|
}
|
|
|
|
|
2018-04-04 01:26:05 +02:00
|
|
|
void get_hard_deveui(uint8_t *pdeveui) {
|
|
|
|
// read DEVEUI from Microchip 24AA02E64 2Kb serial eeprom if present
|
|
|
|
#ifdef MCP_24AA02E64_I2C_ADDRESS
|
|
|
|
uint8_t i2c_ret;
|
|
|
|
// Init this just in case, no more to 100KHz
|
|
|
|
Wire.begin(OLED_SDA, OLED_SCL, 100000);
|
|
|
|
Wire.beginTransmission(MCP_24AA02E64_I2C_ADDRESS);
|
|
|
|
Wire.write(MCP_24AA02E64_MAC_ADDRESS);
|
|
|
|
i2c_ret = Wire.endTransmission();
|
|
|
|
// check if device seen on i2c bus
|
|
|
|
if (i2c_ret == 0) {
|
|
|
|
char deveui[32]="";
|
|
|
|
uint8_t data;
|
|
|
|
Wire.beginTransmission(MCP_24AA02E64_I2C_ADDRESS);
|
|
|
|
Wire.write(MCP_24AA02E64_MAC_ADDRESS);
|
|
|
|
Wire.requestFrom(MCP_24AA02E64_I2C_ADDRESS, 8);
|
|
|
|
while (Wire.available()) {
|
|
|
|
data = Wire.read();
|
|
|
|
sprintf(deveui+strlen(deveui), "%02X ", data) ;
|
|
|
|
*pdeveui++ = data;
|
|
|
|
}
|
|
|
|
i2c_ret = Wire.endTransmission();
|
|
|
|
ESP_LOGI(TAG, "Serial EEPROM 24AA02E64 found, read DEVEUI %s", deveui);
|
|
|
|
} else {
|
|
|
|
ESP_LOGI(TAG, "Serial EEPROM 24AA02E64 not found ret=%d", i2c_ret);
|
|
|
|
}
|
|
|
|
// Set back to 400KHz to speed up OLED
|
|
|
|
Wire.setClock(400000);
|
|
|
|
#endif // MCP 24AA02E64
|
|
|
|
}
|
|
|
|
|
2018-03-18 19:45:17 +01:00
|
|
|
#ifdef VERBOSE
|
|
|
|
|
|
|
|
// Display a key
|
|
|
|
void printKey(const char * name, const uint8_t * key, uint8_t len, bool lsb) {
|
|
|
|
uint8_t start=lsb?len:0;
|
|
|
|
uint8_t end = lsb?0:len;
|
|
|
|
const uint8_t * p ;
|
2018-03-24 11:28:33 +01:00
|
|
|
char keystring[len+1] = "", keybyte[3];
|
2018-03-18 19:45:17 +01:00
|
|
|
for (uint8_t i=0; i<len ; i++) {
|
|
|
|
p = lsb ? key+len-i-1 : key+i;
|
|
|
|
sprintf(keybyte, "%02X", * p);
|
|
|
|
strncat(keystring, keybyte, 2);
|
|
|
|
}
|
|
|
|
ESP_LOGI(TAG, "%s: %s", name, keystring);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Display OTAA keys
|
|
|
|
void printKeys(void) {
|
|
|
|
// LMIC may not have used callback to fill
|
|
|
|
// all EUI buffer so we do it here to a temp
|
|
|
|
// buffer to be able to display them
|
|
|
|
uint8_t buf[32];
|
|
|
|
os_getDevEui((u1_t*) buf);
|
|
|
|
printKey("DevEUI", buf, 8, true);
|
|
|
|
os_getArtEui((u1_t*) buf);
|
|
|
|
printKey("AppEUI", buf, 8, true);
|
|
|
|
os_getDevKey((u1_t*) buf);
|
|
|
|
printKey("AppKey", buf, 16, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // VERBOSE
|
|
|
|
|
|
|
|
void do_send(osjob_t* j){
|
2018-04-05 14:34:39 +02:00
|
|
|
uint8_t mydata[4];
|
2018-04-02 01:36:34 +02:00
|
|
|
uint16_t data;
|
2018-04-02 14:43:39 +02:00
|
|
|
// Total BLE+WIFI unique MACs seen
|
2018-04-02 01:36:34 +02:00
|
|
|
data = (uint16_t) macs.size();
|
|
|
|
mydata[0] = (data & 0xff00) >> 8;
|
|
|
|
mydata[1] = data & 0xff;
|
|
|
|
|
2018-04-02 14:43:39 +02:00
|
|
|
// Sum of unique BLE MACs seen
|
2018-04-02 01:36:34 +02:00
|
|
|
data = (uint16_t) bles.size();
|
|
|
|
mydata[2] = (data & 0xff00) >> 8;
|
|
|
|
mydata[3] = data & 0xff;
|
|
|
|
|
2018-04-02 14:43:39 +02:00
|
|
|
// Sum of unique WIFI MACs seen
|
2018-04-02 01:36:34 +02:00
|
|
|
// TBD ?
|
|
|
|
//data = (uint16_t) wifis.size();
|
|
|
|
//mydata[4] = (data & 0xff00) >> 8;
|
|
|
|
//mydata[5] = data & 0xff;
|
2018-03-18 19:45:17 +01:00
|
|
|
|
|
|
|
// Check if there is not a current TX/RX job running
|
2018-04-05 14:34:39 +02:00
|
|
|
u8x8.clearLine(7);
|
2018-03-18 19:45:17 +01:00
|
|
|
if (LMIC.opmode & OP_TXRXPEND) {
|
|
|
|
ESP_LOGI(TAG, "OP_TXRXPEND, not sending");
|
|
|
|
u8x8.drawString(0, 7, "LORA BUSY");
|
|
|
|
} else {
|
|
|
|
// Prepare upstream data transmission at the next possible time.
|
2018-04-05 14:34:39 +02:00
|
|
|
LMIC_setTxData2(1, mydata, sizeof(mydata), (cfg.countermode & 0x02));
|
2018-03-18 19:45:17 +01:00
|
|
|
ESP_LOGI(TAG, "Packet queued");
|
|
|
|
u8x8.drawString(0, 7, "PACKET QUEUED");
|
|
|
|
}
|
|
|
|
// Next TX is scheduled after TX_COMPLETE event.
|
|
|
|
}
|
|
|
|
|
|
|
|
void onEvent (ev_t ev) {
|
2018-04-05 14:34:39 +02:00
|
|
|
char buff[24]="";
|
|
|
|
|
2018-03-18 19:45:17 +01:00
|
|
|
switch(ev) {
|
2018-04-05 14:34:39 +02:00
|
|
|
case EV_SCAN_TIMEOUT: strcpy_P(buff, PSTR("SCAN TIMEOUT")); break;
|
|
|
|
case EV_BEACON_FOUND: strcpy_P(buff, PSTR("BEACON FOUND")); break;
|
2018-04-05 21:47:43 +02:00
|
|
|
case EV_BEACON_MISSED: strcpy_P(buff, PSTR("BEACON MISSED")); break;
|
2018-04-05 14:34:39 +02:00
|
|
|
case EV_BEACON_TRACKED: strcpy_P(buff, PSTR("BEACON TRACKED")); break;
|
|
|
|
case EV_JOINING: strcpy_P(buff, PSTR("JOINING")); break;
|
|
|
|
case EV_LOST_TSYNC: strcpy_P(buff, PSTR("LOST TSYNC")); break;
|
|
|
|
case EV_RESET: strcpy_P(buff, PSTR("RESET")); break;
|
|
|
|
case EV_RXCOMPLETE: strcpy_P(buff, PSTR("RX COMPLETE")); break;
|
|
|
|
case EV_LINK_DEAD: strcpy_P(buff, PSTR("LINK DEAD")); break;
|
|
|
|
case EV_LINK_ALIVE: strcpy_P(buff, PSTR("LINK ALIVE")); break;
|
|
|
|
case EV_RFU1: strcpy_P(buff, PSTR("RFUI")); break;
|
|
|
|
case EV_JOIN_FAILED: strcpy_P(buff, PSTR("JOIN FAILED")); break;
|
|
|
|
case EV_REJOIN_FAILED: strcpy_P(buff, PSTR("REJOIN FAILED")); break;
|
|
|
|
|
2018-03-18 19:45:17 +01:00
|
|
|
case EV_JOINED:
|
2018-04-05 14:34:39 +02:00
|
|
|
strcpy_P(buff, PSTR("JOINED"));
|
2018-03-18 19:45:17 +01:00
|
|
|
u8x8.clearLine(6); // erase "Join Wait" message from display, see main.cpp
|
|
|
|
// Disable link check validation (automatically enabled
|
|
|
|
// during join, but not supported by TTN at this time).
|
|
|
|
LMIC_setLinkCheckMode(0);
|
|
|
|
// set data rate adaptation
|
|
|
|
LMIC_setAdrMode(cfg.adrmode);
|
|
|
|
// Set data rate and transmit power (note: txpower seems to be ignored by the library)
|
|
|
|
switch_lora(cfg.lorasf,cfg.txpower);
|
|
|
|
joinstate=true;
|
|
|
|
// show effective LoRa parameters after join
|
|
|
|
ESP_LOGI(TAG, "ADR=%i, SF=%i, TXPOWER=%i", cfg.adrmode, cfg.lorasf, cfg.txpower);
|
|
|
|
break;
|
|
|
|
case EV_TXCOMPLETE:
|
|
|
|
ESP_LOGI(TAG, "EV_TXCOMPLETE (includes waiting for RX windows)");
|
|
|
|
u8x8.clearLine(7);
|
|
|
|
if (LMIC.txrxFlags & TXRX_ACK) {
|
|
|
|
ESP_LOGI(TAG, "Received ack");
|
|
|
|
u8x8.drawString(0, 7, "RECEIVED ACK");
|
2018-04-05 14:34:39 +02:00
|
|
|
} else {
|
|
|
|
u8x8.drawString(0, 7, "TX COMPLETE");
|
|
|
|
}
|
2018-03-18 19:45:17 +01:00
|
|
|
if (LMIC.dataLen) {
|
2018-04-05 14:34:39 +02:00
|
|
|
ESP_LOGI(TAG, "Received %d bytes of payload", LMIC.dataLen);
|
2018-03-18 19:45:17 +01:00
|
|
|
u8x8.clearLine(6);
|
|
|
|
u8x8.setCursor(0, 6);
|
2018-04-05 14:34:39 +02:00
|
|
|
u8x8.printf("Rcvd %d bytes", LMIC.dataLen);
|
2018-03-18 19:45:17 +01:00
|
|
|
u8x8.clearLine(7);
|
|
|
|
u8x8.setCursor(0, 7);
|
|
|
|
// LMIC.snr = SNR twos compliment [dB] * 4
|
2018-03-31 23:22:46 +02:00
|
|
|
// LMIC.rssi = RSSI [dBm] (-196...+63)
|
2018-03-18 19:45:17 +01:00
|
|
|
u8x8.printf("RSSI %d SNR %d", LMIC.rssi, (signed char)LMIC.snr / 4);
|
|
|
|
// check if payload received on command port, then call remote command interpreter
|
|
|
|
if ( (LMIC.txrxFlags & TXRX_PORT) && (LMIC.frame[LMIC.dataBeg-1] == RCMDPORT ) ) {
|
|
|
|
// caution: buffering LMIC values here because rcommand() can modify LMIC.frame
|
|
|
|
unsigned char* buffer = new unsigned char[MAX_LEN_FRAME];
|
|
|
|
memcpy(buffer, LMIC.frame, MAX_LEN_FRAME); //Copy data from cfg to char*
|
|
|
|
int i, k = LMIC.dataBeg, l = LMIC.dataBeg+LMIC.dataLen-2;
|
|
|
|
for (i=k; i<=l; i+=2)
|
|
|
|
rcommand(buffer[i], buffer[i+1]);
|
|
|
|
delete[] buffer; //free memory
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2018-04-05 14:34:39 +02:00
|
|
|
default: sprintf_P(buff, PSTR("UNKNOWN EVENT %d"), ev); break;
|
2018-03-18 19:45:17 +01:00
|
|
|
}
|
2018-04-05 14:34:39 +02:00
|
|
|
|
|
|
|
// Log & Display if asked
|
|
|
|
if (*buff) {
|
|
|
|
ESP_LOGI(TAG, "EV_%s", buff);
|
|
|
|
u8x8.clearLine(7);
|
|
|
|
u8x8.drawString(0, 7, buff);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-31 23:22:46 +02:00
|
|
|
}
|
|
|
|
|