mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/not_test_bounce_buffer_mode_iram_safe' into 'master'
rgb_lcd: don't test bounce buffer mode with iram-safe See merge request espressif/esp-idf!19089
This commit is contained in:
commit
9df1b0e3a1
@ -157,6 +157,8 @@ TEST_CASE("lcd_rgb_panel_refresh_on_demand", "[lcd]")
|
||||
free(img);
|
||||
}
|
||||
|
||||
#if !CONFIG_LCD_RGB_ISR_IRAM_SAFE
|
||||
// bounce buffer mode is not IRAM safe, so we don't test it
|
||||
TEST_CASE("lcd_rgb_panel_bounce_buffer", "[lcd]")
|
||||
{
|
||||
uint8_t *img = malloc(TEST_IMG_SIZE);
|
||||
@ -180,6 +182,7 @@ TEST_CASE("lcd_rgb_panel_bounce_buffer", "[lcd]")
|
||||
TEST_ESP_OK(esp_lcd_panel_del(panel_handle));
|
||||
free(img);
|
||||
}
|
||||
#endif
|
||||
|
||||
TEST_CASE("lcd_rgb_panel_update_pclk", "[lcd]")
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user