Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rzeldent committed Mar 7, 2024
1 parent 8992f08 commit 4bcf466
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/esp_lcd_panel_gc9a01.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ esp_err_t gc9a01_reset(esp_lcd_panel_t *panel)
}
}

vTaskDelay(pdMS_TO_TICKS(10));
vTaskDelay(pdMS_TO_TICKS(120));

return ESP_OK;
}
Expand Down
2 changes: 1 addition & 1 deletion src/esp_lcd_panel_st7796.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ esp_err_t st7796_reset(esp_lcd_panel_t *panel)
}
}

vTaskDelay(pdMS_TO_TICKS(10));
vTaskDelay(pdMS_TO_TICKS(120));

return ESP_OK;
}
Expand Down

0 comments on commit 4bcf466

Please sign in to comment.