Add a delay to avoid filling the log

This commit is contained in:
Nicklas Börjesson 2022-05-15 11:07:21 +02:00 committed by GitHub
parent 26fe6e7703
commit f90b3db4bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -119,7 +119,10 @@ void ili9488_flush(lv_disp_drv_t * drv, const lv_area_t * area, lv_color_t * col
uint8_t *mybuf;
do {
mybuf = (uint8_t *) heap_caps_malloc(3 * size * sizeof(uint8_t), MALLOC_CAP_DMA);
if (mybuf == NULL) ESP_LOGW(TAG, "Could not allocate enough DMA memory!");
if (mybuf == NULL) {
ESP_LOGW(TAG, "Could not allocate enough DMA memory! (wait");
vTaskDelay(1000);
}
} while (mybuf == NULL);
uint32_t LD = 0;