Added version identification.

This commit is contained in:
Quency-D
2026-02-27 16:49:00 +08:00
parent 9312fe780a
commit f0d37e552d
2 changed files with 7 additions and 6 deletions

View File

@@ -78,9 +78,9 @@ void HeltecV4Board::begin() {
} }
const char* HeltecV4Board::getManufacturerName() const { const char* HeltecV4Board::getManufacturerName() const {
#ifdef HELTEC_LORA_V4_TFT #ifdef HELTEC_LORA_V4_TFT
return "Heltec V4 TFT"; return loRaFEMControl.getFEMType() == KCT8103L_PA ? "Heltec V4.3 TFT" : "Heltec V4 TFT";
#else #else
return "Heltec V4 OLED"; return loRaFEMControl.getFEMType() == KCT8103L_PA ? "Heltec V4.3 OLED" : "Heltec V4 OLED";
#endif #endif
} }

View File

@@ -20,8 +20,9 @@ class LoRaFEMControl
void setLNAEnable(bool enabled); void setLNAEnable(bool enabled);
bool isLnaCanControl(void) { return lna_can_control; } bool isLnaCanControl(void) { return lna_can_control; }
void setLnaCanControl(bool can_control) { lna_can_control = can_control; } void setLnaCanControl(bool can_control) { lna_can_control = can_control; }
LoRaFEMType getFEMType(void) const { return fem_type; }
private: private:
LoRaFEMType fem_type; LoRaFEMType fem_type=OTHER_FEM_TYPES;
bool lna_enabled=false; bool lna_enabled=false;
bool lna_can_control=false; bool lna_can_control=false;
}; };