esp32_camera: Set framebuffer task prio to 1 (#5943)

This commit is contained in:
Alex Hermann 2023-12-18 01:00:42 +01:00 committed by GitHub
parent 8a23b7e0c8
commit 8653972cb8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,7 +37,7 @@ void ESP32Camera::setup() {
"framebuffer_task", // name
1024, // stack size
nullptr, // task pv params
0, // priority
1, // priority
nullptr, // handle
1 // core
);