mirror of https://github.com/meshcore-dev/MeshCore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.3 KiB
40 lines
1.3 KiB
#pragma once
|
|
|
|
#include "CustomLR2021.h"
|
|
#include "RadioLibWrappers.h"
|
|
|
|
// MeshCore wrapper for the LR2021. Implements the RadioLibWrapper hooks the mesh
|
|
// engine needs, using the LR2021's RadioLib API (getRssiInst / getRSSI / getSNR /
|
|
// boosted-gain). doResetAGC() is left to the base-class default for now; add an
|
|
// LR2021-specific reset only if RX sensitivity degrades over long runs.
|
|
|
|
class CustomLR2021Wrapper : public RadioLibWrapper {
|
|
public:
|
|
CustomLR2021Wrapper(CustomLR2021& radio, mesh::MainBoard& board)
|
|
: RadioLibWrapper(radio, board) { }
|
|
|
|
bool isReceivingPacket() override {
|
|
return ((CustomLR2021 *)_radio)->isReceiving();
|
|
}
|
|
|
|
float getCurrentRSSI() override {
|
|
float rssi = -110;
|
|
((CustomLR2021 *)_radio)->getRssiInst(&rssi);
|
|
return rssi;
|
|
}
|
|
|
|
void onSendFinished() override {
|
|
RadioLibWrapper::onSendFinished();
|
|
_radio->setPreambleLength(16); // overcomes weird issues with small and big pkts
|
|
}
|
|
|
|
float getLastRSSI() const override { return ((CustomLR2021 *)_radio)->getRSSI(); }
|
|
float getLastSNR() const override { return ((CustomLR2021 *)_radio)->getSNR(); }
|
|
|
|
void setRxBoostedGainMode(bool en) override {
|
|
((CustomLR2021 *)_radio)->setRxBoostedGainMode(en ? LR2021_RX_BOOST_LEVEL : 0);
|
|
}
|
|
bool getRxBoostedGainMode() const override {
|
|
return ((CustomLR2021 *)_radio)->getRxBoostLevel() != 0;
|
|
}
|
|
};
|
|
|