Skip to content

Commit 2f6ca73

Browse files
authored
Merge pull request #2439 from Quency-D/fix-lna
Heltec boards have LNA disabled by default.
2 parents d8f3d59 + 696aae6 commit 2f6ca73

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 = true;
19+
bool lna_enabled = false;
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 = true;
19+
bool lna_enabled = false;
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=true;
26+
bool lna_enabled=false;
2727
bool lna_can_control=false;
2828
};
2929

0 commit comments

Comments
 (0)