esp32_loraprs/loraprs_service.h

132 wiersze
2.7 KiB
C++

#ifndef LORAPRS_SEVICE_H
#define LORAPRS_SERVICE_H
#include <Arduino.h>
#include <SPI.h>
#include <LoRa.h>
#include <WiFi.h>
#include <cppQueue.h>
#include "BluetoothSerial.h"
#include "ax25_payload.h"
#include "loraprs_config.h"
namespace LoraPrs {
class Service
{
public:
Service();
void setup(const Config &conf);
void loop();
private:
void setupWifi(const String &wifiName, const String &wifiKey);
void setupLora(long loraFreq, long bw, int sf, int cr, int pwr, int sync, bool enableCrc);
void setupBt(const String &btName);
void reconnectWifi();
bool reconnectAprsis();
void processTx();
void onLoraDataAvailable(int packetSize);
void onAprsisDataAvailable();
void sendPeriodicBeacon();
void sendToAprsis(const String &aprsMessage);
bool sendAX25ToLora(const AX25::Payload &payload);
bool kissReceiveByte(unsigned char rxByte);
bool kissProcessCommand(unsigned char rxByte);
void kissResetState();
inline bool needsAprsis() const {
return !config_.IsClientMode && (config_.EnableRfToIs || config_.EnableIsToRf);
}
inline bool needsWifi() const { return needsAprsis(); }
inline bool needsBt() const { return config_.IsClientMode; }
inline bool needsBeacon() const { return !config_.IsClientMode && config_.EnableBeacon; }
private:
enum KissMarker {
Fend = 0xc0,
Fesc = 0xdb,
Tfend = 0xdc,
Tfesc = 0xdd
};
enum KissState {
Void = 0,
GetCmd,
GetData,
GetP,
GetSlotTime,
Escape
};
enum KissCmd {
// generic
Data = 0x00,
P = 0x02,
SlotTime = 0x03,
// extended to modem
Frequency = 0x10,
Bandwidth = 0x11,
Power = 0x12,
SyncWord = 0x13,
SpreadingFactor = 0x14,
CodingRate = 0x15,
EnableCrc = 0x16,
// extended events from modem
SignalLevel = 0x30,
// end of cmds
NoCmd = 0x80
};
const String CfgLoraprsVersion = "LoRAPRS 0.1";
const int CfgConnRetryMs = 500;
const int CfgPollDelayMs = 5;
const int CfgLoraTxQueueSize = 4096;
const int CfgWiFiConnRetryMaxTimes = 10;
// tx when lower than this value from random 0..255
// use lower value for high traffic, use 255 for real time
const long CfgCsmaPersistence = 100;
const long CfgCsmaSlotTimeMs = 500;
const byte CfgPinSs = 5;
const byte CfgPinRst = 26;
const byte CfgPinDio0 = 14;
private:
// config
Config config_;
byte csmaP_;
long csmaSlotTime_;
String aprsLoginCommand_;
AX25::Callsign ownCallsign_;
// kiss
KissState kissState_;
KissCmd kissCmd_;
std::shared_ptr<cppQueue>kissTxQueue_;
// state
long previousBeaconMs_;
// peripherals
BluetoothSerial serialBt_;
WiFiClient aprsisConn_;
};
} // LoraPrs
#endif // LORAPRS_SERVICE_H