move radiolib wrappers to dedicated directory

This commit is contained in:
recrof 2025-07-13 11:37:33 +02:00
parent 854a8dfe2f
commit 6be8e19a9f
51 changed files with 82 additions and 84 deletions

View file

@ -1,22 +0,0 @@
#pragma once
#include "CustomLLCC68.h"
#include "RadioLibWrappers.h"
class CustomLLCC68Wrapper : public RadioLibWrapper {
public:
CustomLLCC68Wrapper(CustomLLCC68& radio, mesh::MainBoard& board) : RadioLibWrapper(radio, board) { }
bool isReceivingPacket() override {
return ((CustomLLCC68 *)_radio)->isReceiving();
}
float getCurrentRSSI() override {
return ((CustomLLCC68 *)_radio)->getRSSI(false);
}
float getLastRSSI() const override { return ((CustomLLCC68 *)_radio)->getRSSI(); }
float getLastSNR() const override { return ((CustomLLCC68 *)_radio)->getSNR(); }
float packetScore(float snr, int packet_len) override {
int sf = ((CustomLLCC68 *)_radio)->spreadingFactor;
return packetScoreInt(snr, sf, packet_len);
}
};