You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(cam_hal): throttle WARN spam so cam_verify_jpeg_soi reduces it's stack footprint
* First occurrence of each warning:
ESP_DRAM_LOGW() → zero stack after the first print.
* Subsequent occurrences:
count with a uint16_t and emit a **literal** ESP_LOGW() only
every 100th event (~ 60 B stack usage).
* Counters auto-reset at 10 000 to avoid wraparound.
0 commit comments