2023-02-20 13:51:54 +01:00
|
|
|
#ifndef _LORA_NET_H_
|
|
|
|
#define _LORA_NET_H_
|
|
|
|
|
|
|
|
#include <Arduino.h>
|
|
|
|
#include <LoRa_E220.h>
|
|
|
|
|
|
|
|
// local includes
|
|
|
|
#include "lora_messages.h"
|
|
|
|
#include "defaults.h"
|
|
|
|
#include "config.h"
|
|
|
|
#include "globals.h"
|
|
|
|
#include "dtc.h"
|
|
|
|
#include "common.h"
|
|
|
|
|
|
|
|
#define FREQUENCY_868
|
|
|
|
|
2023-04-12 22:47:17 +02:00
|
|
|
bool InitLoRa(void (*MPinHelper)(int, int));
|
2023-02-20 13:51:54 +01:00
|
|
|
void LoRa_Process();
|
|
|
|
void sendStatus_LoRa();
|
|
|
|
|
|
|
|
#endif
|