Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion variants/heltec_t096/LoRaFEMControl.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ class LoRaFEMControl
void setLnaCanControl(bool can_control) { lna_can_control = can_control; }

private:
bool lna_enabled = true;
bool lna_enabled = false;
bool lna_can_control = false;
};
2 changes: 1 addition & 1 deletion variants/heltec_tracker_v2/LoRaFEMControl.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ class LoRaFEMControl
void setLnaCanControl(bool can_control) { lna_can_control = can_control; }

private:
bool lna_enabled = true;
bool lna_enabled = false;
bool lna_can_control = false;
};
2 changes: 1 addition & 1 deletion variants/heltec_v4/LoRaFEMControl.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class LoRaFEMControl
LoRaFEMType getFEMType(void) const { return fem_type; }
private:
LoRaFEMType fem_type=OTHER_FEM_TYPES;
bool lna_enabled=true;
bool lna_enabled=false;
bool lna_can_control=false;
};