We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 201e5bb commit 4250260Copy full SHA for 4250260
targets/bornhack-2025-circle/badge_bsp_led.c
@@ -35,18 +35,6 @@ esp_err_t bsp_led_initialize(void) {
35
},
36
};
37
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
50
return led_strip_new_rmt_device(&strip_config, &rmt_config, &led_strip);
51
}
52
0 commit comments