mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-09 04:56:53 +03:00
Prevent auto restart on cam framebuffer init error (#1522)
* use correct log level * revert autorestart on camera framebuffer init error * . Co-authored-by: CaCO3 <caco@ruinelli.ch>
This commit is contained in:
@@ -255,7 +255,10 @@ extern "C" void app_main(void)
|
|||||||
camera_fb_t * fb = esp_camera_fb_get();
|
camera_fb_t * fb = esp_camera_fb_get();
|
||||||
if (!fb) {
|
if (!fb) {
|
||||||
LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Camera Framebuffer cannot be initialized!");
|
LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Camera Framebuffer cannot be initialized!");
|
||||||
initSucessful = false;
|
/* Easiest would be to simply restart here and try again,
|
||||||
|
how ever there seem to be systems where it fails at startup but still work corectly later.
|
||||||
|
Therefore we treat it still as successed!
|
||||||
|
//initSucessful = false; */
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
esp_camera_fb_return(fb);
|
esp_camera_fb_return(fb);
|
||||||
|
|||||||
Reference in New Issue
Block a user