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 Jesse Hills
parent 168e704130
commit e8ce780482
No known key found for this signature in database
GPG Key ID: BEAAE804EFD8E83A

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
);