SDSPI fix for ESP32-C5: correct API v5.5, CMake dependencies, pin mapping

This commit is contained in:
Clawdia
2026-05-09 17:59:43 +02:00
parent 240a374148
commit 913b33d839
1519 changed files with 210337 additions and 610 deletions
@@ -55,10 +55,10 @@ void v2x_display_ui_task(void *pvParameters)
snprintf(sd_label, sizeof(sd_label), "SD: %3.0f%%", sd_pct * 100);
v2x_display_text(2, 9, sd_label, DISP_COLOR_WHITE, FONT_6x8);
/* --- Frame-Counter (groß, rot, Y=20) --- */
/* --- Frame-Counter (groß, rot, Y=28) --- */
uint32_t current_count = g_v2x_frame_count;
if (current_count != last_count) {
v2x_display_frame_count(current_count, 28, DISP_W, 40);
v2x_display_frame_count(current_count);
last_count = current_count;
}