Skip to content

Commit 27548f0

Browse files
committed
variants: update initVariant to configure PIN_PERI_EN
Replaced PIN_MFP_PWR with PIN_PERI_EN in the initVariant function to ensure proper initialization of the peripheral enable pin. Signed-off-by: ChihoSin [email protected]
1 parent 4a46bb5 commit 27548f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

variants/fobe_quill_esp32_s3_mesh/variant.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
extern "C" {
55

66
void initVariant(void) {
7-
pinMode(PIN_MFP_PWR, OUTPUT);
8-
digitalWrite(PIN_MFP_PWR, HIGH);
7+
pinMode(PIN_PERI_EN, OUTPUT);
8+
digitalWrite(PIN_PERI_EN, HIGH);
99

1010
pinMode(PIN_OLED_EN, OUTPUT);
1111
digitalWrite(PIN_OLED_EN, HIGH);

0 commit comments

Comments
 (0)