2022-02-21 10:44:13 +01:00
|
|
|
#if (HAS_LORA)
|
|
|
|
|
2018-07-17 15:15:58 +02:00
|
|
|
#ifndef _LORAWAN_H
|
|
|
|
#define _LORAWAN_H
|
2018-06-09 22:28:20 +02:00
|
|
|
|
2018-09-20 17:33:52 +02:00
|
|
|
#include "globals.h"
|
|
|
|
#include "rcommand.h"
|
2019-02-24 01:44:55 +01:00
|
|
|
#include "timekeeper.h"
|
2019-10-19 21:14:04 +02:00
|
|
|
#include <driver/rtc_io.h>
|
2018-09-20 17:33:52 +02:00
|
|
|
|
2018-07-15 14:28:05 +02:00
|
|
|
// LMIC-Arduino LoRaWAN Stack
|
|
|
|
#include <lmic.h>
|
|
|
|
#include <hal/hal.h>
|
2018-11-26 22:49:45 +01:00
|
|
|
#include <SPI.h>
|
|
|
|
#include <arduino_lmic_hal_boards.h>
|
2018-07-15 14:28:05 +02:00
|
|
|
#include "loraconf.h"
|
|
|
|
|
2018-09-20 17:33:52 +02:00
|
|
|
// Needed for 24AA02E64, does not hurt anything if included and not used
|
|
|
|
#ifdef MCP_24AA02E64_I2C_ADDRESS
|
|
|
|
#include <Wire.h>
|
|
|
|
#endif
|
|
|
|
|
2019-08-30 18:54:53 +02:00
|
|
|
extern TaskHandle_t lmicTask, lorasendTask;
|
2021-03-31 19:02:01 +02:00
|
|
|
extern char lmic_event_msg[LMIC_EVENTMSG_LEN]; // display buffer
|
2018-10-03 00:25:05 +02:00
|
|
|
|
2020-12-09 10:15:12 +01:00
|
|
|
esp_err_t lmic_init(void);
|
2019-10-09 20:07:16 +02:00
|
|
|
void lora_setupForNetwork(bool preJoin);
|
2020-12-09 10:15:12 +01:00
|
|
|
void SaveLMICToRTC(int deepsleep_sec);
|
|
|
|
void LoadLMICFromRTC();
|
2019-08-02 21:53:05 +02:00
|
|
|
void lmictask(void *pvParameters);
|
2018-06-12 19:50:58 +02:00
|
|
|
void gen_lora_deveui(uint8_t *pdeveui);
|
|
|
|
void RevBytes(unsigned char *b, size_t c);
|
2018-06-09 22:28:20 +02:00
|
|
|
void get_hard_deveui(uint8_t *pdeveui);
|
2018-07-15 14:28:05 +02:00
|
|
|
void os_getDevKey(u1_t *buf);
|
|
|
|
void os_getArtEui(u1_t *buf);
|
|
|
|
void os_getDevEui(u1_t *buf);
|
2019-08-29 10:13:47 +02:00
|
|
|
void lora_send(void *pvParameters);
|
2019-08-28 10:48:39 +02:00
|
|
|
void lora_enqueuedata(MessageBuffer_t *message);
|
2018-11-03 20:29:02 +01:00
|
|
|
void lora_queuereset(void);
|
2020-12-09 10:15:12 +01:00
|
|
|
uint32_t lora_queuewaiting(void);
|
2019-12-25 23:21:31 +01:00
|
|
|
void IRAM_ATTR myEventCallback(void *pUserData, ev_t ev);
|
2020-03-06 19:24:58 +01:00
|
|
|
void IRAM_ATTR myRxCallback(void *pUserData, uint8_t port, const uint8_t *pMsg,
|
|
|
|
size_t nMsg);
|
|
|
|
void IRAM_ATTR myTxCallback(void *pUserData, int fSuccess);
|
2019-09-20 09:51:33 +02:00
|
|
|
const char *getSfName(rps_t rps);
|
2019-09-20 13:22:45 +02:00
|
|
|
const char *getBwName(rps_t rps);
|
|
|
|
const char *getCrName(rps_t rps);
|
2020-03-06 19:24:58 +01:00
|
|
|
|
2020-03-07 00:03:05 +01:00
|
|
|
#if (VERBOSE)
|
2020-03-06 19:24:58 +01:00
|
|
|
void showLoraKeys(void);
|
2020-03-07 00:03:05 +01:00
|
|
|
#endif // VERBOSE
|
2019-08-31 18:36:49 +02:00
|
|
|
|
2022-02-21 10:44:13 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // HAS_LORA
|