From 0e153e02e0d828c6f3dc5197e92b2379e5c05111 Mon Sep 17 00:00:00 2001 From: David Chen Date: Mon, 17 Nov 2025 13:44:42 -0800 Subject: [PATCH 1/2] default to logs over UART --- components/livekit/examples/minimal_video/sdkconfig.defaults | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/livekit/examples/minimal_video/sdkconfig.defaults b/components/livekit/examples/minimal_video/sdkconfig.defaults index 6bcd6fb..a61fbea 100644 --- a/components/livekit/examples/minimal_video/sdkconfig.defaults +++ b/components/livekit/examples/minimal_video/sdkconfig.defaults @@ -9,7 +9,7 @@ CONFIG_CACHE_L2_CACHE_256KB=y CONFIG_CACHE_L2_CACHE_LINE_128B=y CONFIG_CODEC_I2C_BACKWARD_COMPATIBLE=n CONFIG_COMPILER_OPTIMIZATION_PERF=y -CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG=y +CONFIG_ESP_CONSOLE_UART_DEFAULT=y CONFIG_ESP_VIDEO_ENABLE_ISP_PIPELINE_CONTROLLER=y CONFIG_ESP_WS_CLIENT_ENABLE_DYNAMIC_BUFFER=y CONFIG_ESP_WS_CLIENT_SEPARATE_TX_LOCK=y From d6753cca5adbeb7e494ff41812afc0dac16bd418 Mon Sep 17 00:00:00 2001 From: David Chen Date: Mon, 17 Nov 2025 14:49:20 -0800 Subject: [PATCH 2/2] update default resolution/fps --- components/livekit/examples/minimal_video/main/example.c | 6 +++--- .../livekit/examples/minimal_video/sdkconfig.defaults | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/components/livekit/examples/minimal_video/main/example.c b/components/livekit/examples/minimal_video/main/example.c index b0fec92..5390dfe 100644 --- a/components/livekit/examples/minimal_video/main/example.c +++ b/components/livekit/examples/minimal_video/main/example.c @@ -37,9 +37,9 @@ void join_room() }, .video_encode = { .codec = LIVEKIT_VIDEO_CODEC_H264, - .width = 1920, - .height = 1080, - .fps = 25 + .width = 1280, + .height = 720, + .fps = 30 }, .capturer = media_get_capturer() }, diff --git a/components/livekit/examples/minimal_video/sdkconfig.defaults b/components/livekit/examples/minimal_video/sdkconfig.defaults index a61fbea..48237fc 100644 --- a/components/livekit/examples/minimal_video/sdkconfig.defaults +++ b/components/livekit/examples/minimal_video/sdkconfig.defaults @@ -36,4 +36,4 @@ CONFIG_SPIRAM=y # For the camera included with the Espressif ESP32-P4-Function-EV-Board. CONFIG_CAMERA_SC2336=y -CONFIG_CAMERA_SC2336_MIPI_RAW8_1024x600_30FPS=y \ No newline at end of file +CONFIG_CAMERA_SC2336_MIPI_RAW8_1280X720_30FPS=y \ No newline at end of file