From e45bc271d7c539b43177125dab9738ffbb299882 Mon Sep 17 00:00:00 2001 From: Valentin Roland Date: Tue, 13 Feb 2024 18:31:45 +0100 Subject: [PATCH] cleanup, add bus frequency override to demo example --- examples/demo/main/main.c | 5 +++++ examples/dragon/main/func.h | 0 2 files changed, 5 insertions(+) delete mode 100644 examples/dragon/main/func.h diff --git a/examples/demo/main/main.c b/examples/demo/main/main.c index a6c59101..6eccb1c5 100644 --- a/examples/demo/main/main.c +++ b/examples/demo/main/main.c @@ -54,6 +54,11 @@ void idf_setup() { epd_rotated_display_height() ); + // The display bus settings for V7 may be conservative, you can manually + // override the bus speed to tune for speed, i.e., if you set the PSRAM speed + // to 120MHz. + // epd_set_lcd_pixel_clock_MHz(17); + heap_caps_print_heap_info(MALLOC_CAP_INTERNAL); heap_caps_print_heap_info(MALLOC_CAP_SPIRAM); } diff --git a/examples/dragon/main/func.h b/examples/dragon/main/func.h deleted file mode 100644 index e69de29b..00000000