mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-07-10 10:51:42 +00:00
14 lines
236 B
C++
14 lines
236 B
C++
#pragma once
|
|
|
|
class LoRaFEMControl {
|
|
public:
|
|
LoRaFEMControl() {}
|
|
virtual ~LoRaFEMControl() {}
|
|
|
|
void init();
|
|
void setSleepModeEnable();
|
|
void setTxModeEnable();
|
|
void setRxModeEnable();
|
|
void setRxModeEnableWhenMCUSleep();
|
|
};
|