Skip to content

Commit 4250260

Browse files
authored
Remove non-existent power enable pin from circle target
1 parent 201e5bb commit 4250260

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

targets/bornhack-2025-circle/badge_bsp_led.c

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -35,18 +35,6 @@ esp_err_t bsp_led_initialize(void) {
3535
},
3636
};
3737

38-
gpio_config_t power_enable_pin_conf = {
39-
.pin_bit_mask = BIT64(BSP_POWER_ENABLE_PIN),
40-
.mode = GPIO_MODE_INPUT_OUTPUT,
41-
.pull_up_en = 0,
42-
.pull_down_en = 0,
43-
.intr_type = GPIO_INTR_DISABLE,
44-
};
45-
46-
gpio_config(&power_enable_pin_conf);
47-
48-
gpio_set_level(BSP_POWER_ENABLE_PIN, true);
49-
5038
return led_strip_new_rmt_device(&strip_config, &rmt_config, &led_strip);
5139
}
5240

0 commit comments

Comments
 (0)