Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion bsp/esp32_c3_lcdkit/esp32_c3_lcdkit.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ static i2s_chan_handle_t i2s_tx_chan;
static const led_strip_config_t bsp_strip_config = {
.strip_gpio_num = BSP_RGB_CTRL,
.max_leds = 1,
.led_pixel_format = LED_PIXEL_FORMAT_GRB,
.led_model = LED_MODEL_WS2812,
.flags.invert_out = false,
};
Expand Down
1 change: 0 additions & 1 deletion bsp/esp32_s3_korvo_1/esp32_s3_korvo_1.c
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,6 @@ esp_err_t bsp_iot_button_create(button_handle_t btn_array[], int *btn_cnt, int b
static const led_strip_config_t bsp_leds_rgb_strip_config = {
.strip_gpio_num = BSP_LED_RGB_GPIO, // The GPIO that connected to the LED strip's data line
.max_leds = BSP_LED_NUM, // The number of LEDs in the strip,
.led_pixel_format = LED_PIXEL_FORMAT_GRB, // Pixel format of your LED strip
.led_model = LED_MODEL_WS2812, // LED strip model
.flags.invert_out = false, // whether to invert the output signal
};
Expand Down
4 changes: 2 additions & 2 deletions bsp/esp32_s3_korvo_1/idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
version: "1.1.1"
version: "1.1.2"
description: Board Support Package (BSP) for ESP32-S3-KORVO-1
url: https://github.com/espressif/esp-bsp/tree/master/bsp/esp32_s3_korvo_1

targets:
- esp32s3

tags:
- bsp
- bsp

dependencies:
idf: ">=4.4"
Expand Down
2 changes: 1 addition & 1 deletion bsp/esp_bsp_devkit/idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

version: "1.0.0"
version: "1.0.1"
description: DevKit Board Support Package (BSP)
url: https://github.com/espressif/esp-bsp/tree/master/bsp/esp_bsp_devkit

Expand Down
1 change: 0 additions & 1 deletion bsp/esp_bsp_devkit/src/esp_bsp_devkit.c
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,6 @@ static led_indicator_gpio_config_t bsp_leds_gpio_config[] = {
static const led_strip_config_t bsp_leds_rgb_strip_config = {
.strip_gpio_num = CONFIG_BSP_LED_RGB_GPIO, // The GPIO that connected to the LED strip's data line
.max_leds = BSP_LED_NUM, // The number of LEDs in the strip,
.led_pixel_format = LED_PIXEL_FORMAT_GRB, // Pixel format of your LED strip
.led_model = LED_MODEL_WS2812, // LED strip model
.flags.invert_out = false, // whether to invert the output signal
};
Expand Down
2 changes: 1 addition & 1 deletion bsp/esp_bsp_generic/idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

version: "1.2.0"
version: "1.2.1"
description: Generic Board Support Package (BSP)
url: https://github.com/espressif/esp-bsp/tree/master/bsp/esp_bsp_generic

Expand Down
1 change: 0 additions & 1 deletion bsp/esp_bsp_generic/src/esp_bsp_generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,6 @@ static led_indicator_gpio_config_t bsp_leds_gpio_config[] = {
static const led_strip_config_t bsp_leds_rgb_strip_config = {
.strip_gpio_num = CONFIG_BSP_LED_RGB_GPIO, // The GPIO that connected to the LED strip's data line
.max_leds = BSP_LED_NUM, // The number of LEDs in the strip,
.led_pixel_format = LED_PIXEL_FORMAT_GRB, // Pixel format of your LED strip
.led_model = LED_MODEL_WS2812, // LED strip model
.flags.invert_out = false, // whether to invert the output signal
};
Expand Down
Loading