1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-03 11:52:20 +01:00

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

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