diff options
| author | cuolm <[email protected]> | 2026-07-03 15:21:40 +0200 |
|---|---|---|
| committer | cuolm <[email protected]> | 2026-07-03 15:21:40 +0200 |
| commit | b2a9a5d06af0d7b67b9c017361665b68ddbd7d22 (patch) | |
| tree | 7412824a65e15d27c7a9f7e3bec8e99cfeb3e23c | |
| parent | ef051846357b79e1d8c27d9643b1ee9c950dfda0 (diff) | |
fix: correct video stack macro typo in video capture examples
Corrects VIDEO_STACK_SZIE to VIDEO_STACK_SIZE.
| -rw-r--r-- | examples/device/video_capture/src/main.c | 2 | ||||
| -rw-r--r-- | examples/device/video_capture_2ch/src/main.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/device/video_capture/src/main.c b/examples/device/video_capture/src/main.c index df9f77a1c..d366a17e8 100644 --- a/examples/device/video_capture/src/main.c +++ b/examples/device/video_capture/src/main.c @@ -389,7 +389,7 @@ void freertos_init(void) { #else xTaskCreate(led_blinking_task, "blinky", BLINKY_STACK_SIZE, NULL, 1, NULL); xTaskCreate(usb_device_task, "usbd", USBD_STACK_SIZE, NULL, configMAX_PRIORITIES - 1, NULL); - xTaskCreate(video_task, "video", VIDEO_STACK_SZIE, NULL, configMAX_PRIORITIES - 2, NULL); + xTaskCreate(video_task, "video", VIDEO_STACK_SIZE, NULL, configMAX_PRIORITIES - 2, NULL); #endif // only start scheduler for non-espressif mcu diff --git a/examples/device/video_capture_2ch/src/main.c b/examples/device/video_capture_2ch/src/main.c index debd336fd..fb45038c8 100644 --- a/examples/device/video_capture_2ch/src/main.c +++ b/examples/device/video_capture_2ch/src/main.c @@ -351,7 +351,7 @@ void freertos_init(void) { #else xTaskCreate(led_blinking_task, "blinky", BLINKY_STACK_SIZE, NULL, 1, NULL); xTaskCreate(usb_device_task, "usbd", USBD_STACK_SIZE, NULL, configMAX_PRIORITIES - 1, NULL); - xTaskCreate(video_task, "video", VIDEO_STACK_SZIE, NULL, configMAX_PRIORITIES - 2, NULL); + xTaskCreate(video_task, "video", VIDEO_STACK_SIZE, NULL, configMAX_PRIORITIES - 2, NULL); #endif // only start scheduler for non-espressif mcu |
