Skip to content

Commit

Permalink
Fix T-LoRa V2.1-6 with TCXO init (#3392)
Browse files Browse the repository at this point in the history
  • Loading branch information
GUVWAF authored Mar 12, 2024
1 parent 38ea681 commit 724fa38
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,11 @@ void setup()
digitalWrite(PIN_POWER_EN1, INPUT);
#endif

#if defined(LORA_TCXO_GPIO)
pinMode(LORA_TCXO_GPIO, OUTPUT);
digitalWrite(LORA_TCXO_GPIO, HIGH);
#endif

#if defined(VEXT_ENABLE_V03)
pinMode(VEXT_ENABLE_V03, OUTPUT);
pinMode(ST7735_BL_V03, OUTPUT);
Expand Down

0 comments on commit 724fa38

Please sign in to comment.