diff options
| author | Zixun LI <[email protected]> | 2026-07-03 16:55:14 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-07-03 16:55:14 +0200 |
| commit | 37ea546abac82940c45443f16737db9b0c32a22d (patch) | |
| tree | d03b84c34bba4635c819e4bfaa0e0aaab284f57b /examples/device/video_capture_2ch | |
| parent | ef051846357b79e1d8c27d9643b1ee9c950dfda0 (diff) | |
| parent | 0eb1928570d64914d51e40f9dad49280786c3b36 (diff) | |
Merge pull request #3751 from cuolm/master
fix: correct video stack macro typo in video capture examples
Diffstat (limited to 'examples/device/video_capture_2ch')
| -rw-r--r-- | examples/device/video_capture_2ch/src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
