Browse Source

Delete src/helpers/CustomLR1121Wrapper.h

pull/249/head
Rastislav Vysoky 1 year ago
committed by GitHub
parent
commit
81863a5995
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 30
      src/helpers/CustomLR1121Wrapper.h

30
src/helpers/CustomLR1121Wrapper.h

@ -1,30 +0,0 @@
#pragma once
#include "CustomLR1121.h"
#include "RadioLibWrappers.h"
class CustomLR1121Wrapper : public RadioLibWrapper {
public:
CustomLR1121Wrapper(CustomLR1121& radio, mesh::MainBoard& board) : RadioLibWrapper(radio, board) { }
bool isReceiving() override {
if (((CustomLR1121 *)_radio)->isReceiving()) return true;
idle(); // put lr1121 into standby
// do some basic CAD (blocks for ~12780 micros (on SF 10)!)
bool activity = (((CustomLR1121 *)_radio)->scanChannel() == RADIOLIB_LORA_DETECTED);
if (activity) {
startRecv();
} else {
idle();
}
return activity;
}
void onSendFinished() override {
RadioLibWrapper::onSendFinished();
_radio->setPreambleLength(8); // overcomes weird issues with small and big pkts
}
float getLastRSSI() const override { return ((CustomLR1121 *)_radio)->getRSSI(); }
float getLastSNR() const override { return ((CustomLR1121 *)_radio)->getSNR(); }
};
Loading…
Cancel
Save