Skip to content

Commit d425c87

Browse files
committed
Enable LNA by default t096, tracker v2, heltec v4
1 parent 8c0d5c5 commit d425c87

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

variants/heltec_t096/LoRaFEMControl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ class LoRaFEMControl
1616
void setLnaCanControl(bool can_control) { lna_can_control = can_control; }
1717

1818
private:
19-
bool lna_enabled = false;
19+
bool lna_enabled = true;
2020
bool lna_can_control = false;
2121
};

variants/heltec_tracker_v2/LoRaFEMControl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ class LoRaFEMControl
1616
void setLnaCanControl(bool can_control) { lna_can_control = can_control; }
1717

1818
private:
19-
bool lna_enabled = false;
19+
bool lna_enabled = true;
2020
bool lna_can_control = false;
2121
};

variants/heltec_v4/LoRaFEMControl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class LoRaFEMControl
2323
LoRaFEMType getFEMType(void) const { return fem_type; }
2424
private:
2525
LoRaFEMType fem_type=OTHER_FEM_TYPES;
26-
bool lna_enabled=false;
26+
bool lna_enabled=true;
2727
bool lna_can_control=false;
2828
};
2929

0 commit comments

Comments
 (0)