File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed
variants/esp32s3/t-deck-pro Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -404,6 +404,16 @@ void setup()
404
404
405
405
initDeepSleep ();
406
406
407
+ #if defined(MODEM_POWER_EN)
408
+ pinMode (MODEM_POWER_EN, OUTPUT);
409
+ digitalWrite (MODEM_POWER_EN, LOW);
410
+ #endif
411
+
412
+ #if defined(MODEM_PWRKEY)
413
+ pinMode (MODEM_PWRKEY, OUTPUT);
414
+ digitalWrite (MODEM_PWRKEY, LOW);
415
+ #endif
416
+
407
417
#if defined(LORA_TCXO_GPIO)
408
418
pinMode (LORA_TCXO_GPIO, OUTPUT);
409
419
digitalWrite (LORA_TCXO_GPIO, HIGH);
Original file line number Diff line number Diff line change 92
92
#define SX126X_DIO3_TCXO_VOLTAGE 2.4
93
93
// Internally the TTGO module hooks the SX1262-DIO2 in to control the TX/RX switch (which is the default for the sx1262interface
94
94
// code)
95
+
96
+ #define MODEM_POWER_EN 41
97
+ #define MODEM_PWRKEY 40
98
+ #define MODEM_RST 9
99
+ #define MODEM_RI 7
100
+ #define MODEM_DTR 8
101
+ #define MODEM_RX 10
102
+ #define MODEM_TX 11
103
+
You can’t perform that action at this time.
0 commit comments