Skip to main content
4 votes
Accepted

ESP32 device produces Guru Meditation Error (core panic)

Caveat: I'm not too familiar with ESP32 or LVGL but I am familiar with HW/SW frame buffers. Your LV_CANVAS_BUF_SIZE call is incorrect. You give the 4th arg as 0. This is the stride argument. [If you ...
Craig Estey's user avatar
  • 34.1k
1 vote
Accepted

Corrupt object variables in C++ for ESP32

You are accessing array out of bounds. prox_sensors is an array of 5 pointers, each pointing on a single object. Then you pass first of them when initializing driveManager. Then on each iteration of ...
user7860670's user avatar

Only top scored, non community-wiki answers of a minimum length are eligible