Initialize LoRaFEMInterface with default fem_type

This commit is contained in:
Ben Meadors
2026-03-11 06:55:03 -05:00
parent 421f9afead
commit 60730a73c2
+1 -1
View File
@@ -8,7 +8,7 @@ typedef enum { GC1109_PA, KCT8103L_PA, OTHER_FEM_TYPES } LoRaFEMType;
class LoRaFEMInterface
{
public:
LoRaFEMInterface() {}
LoRaFEMInterface() : fem_type(OTHER_FEM_TYPES) {}
virtual ~LoRaFEMInterface() {}
void init(void);
void setSleepModeEnable(void);