mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-03-30 23:35:45 +00:00
* RadioLibWrapper: new isChannelActive() based on current RSSI being above noise_floor + THRESHOLD
23 lines
761 B
C++
23 lines
761 B
C++
#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);
|
|
}
|
|
};
|