File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ The ESP32-S3-Korvo-2 is a multimedia development board based on the ESP32-S3 chi
1515</td ></tr >
1616</table >
1717
18+ > ** _ NOTE:_ ** Compatible with V3.0 a V3.1 boards.
19+
1820![ image] ( doc/pic.png )
1921
2022## Capabilities and dependencies
Original file line number Diff line number Diff line change @@ -623,14 +623,14 @@ esp_err_t bsp_leds_init(void)
623623 BSP_NULL_CHECK (bsp_io_expander_init (), ESP_ERR_INVALID_STATE );
624624 BSP_ERROR_CHECK_RETURN_ERR (esp_io_expander_set_dir (io_expander , BSP_LED_RED , IO_EXPANDER_OUTPUT ));
625625 BSP_ERROR_CHECK_RETURN_ERR (esp_io_expander_set_dir (io_expander , BSP_LED_BLUE , IO_EXPANDER_OUTPUT ));
626- BSP_ERROR_CHECK_RETURN_ERR (esp_io_expander_set_level (io_expander , BSP_LED_RED , true ));
627- BSP_ERROR_CHECK_RETURN_ERR (esp_io_expander_set_level (io_expander , BSP_LED_BLUE , true ));
626+ BSP_ERROR_CHECK_RETURN_ERR (esp_io_expander_set_level (io_expander , BSP_LED_RED , false ));
627+ BSP_ERROR_CHECK_RETURN_ERR (esp_io_expander_set_level (io_expander , BSP_LED_BLUE , false ));
628628 return ESP_OK ;
629629}
630630
631631esp_err_t bsp_led_set (const bsp_led_t led_io , const bool on )
632632{
633- BSP_ERROR_CHECK_RETURN_ERR (esp_io_expander_set_level (io_expander , led_io , ! on ));
633+ BSP_ERROR_CHECK_RETURN_ERR (esp_io_expander_set_level (io_expander , led_io , on ));
634634 return ESP_OK ;
635635}
636636
Original file line number Diff line number Diff line change 1- version : " 4.0.1~ 2"
1+ version : " 4.0.2"
22description : Board Support Package (BSP) for ESP32-S3-Korvo-2
33url : https://github.com/espressif/esp-bsp/tree/master/bsp/esp32_s3_korvo_2
44
You can’t perform that action at this time.
0 commit comments