Added Camera_USB_XCLK_FREQ and CONFIG_GENERAL_UVC_DELAY

This commit is contained in:
PhosphorosVR
2025-08-08 22:45:28 +02:00
parent 2a2327b038
commit a5d4ac3c7d
6 changed files with 33 additions and 3 deletions

View File

@@ -231,6 +231,6 @@ extern "C" void app_main(void) {
// Pass the actual TaskHandle_t value into the timer
timerHandle = createStartVideoStreamingTimer((void*)serialManagerHandle);
if (timerHandle != nullptr) {
esp_timer_start_once(timerHandle, 30000000); // 30s
esp_timer_start_once(timerHandle, CONFIG_GENERAL_UVC_DELAY * 1000000);
}
}