style: apply clang-format and enforce left pointer alignment

This commit is contained in:
Sebastien L
2026-02-12 04:48:38 +00:00
parent df225c120c
commit bf2fff44b8
148 changed files with 11508 additions and 12904 deletions

View File

@@ -28,14 +28,10 @@ extern "C" {
#endif
#ifdef CONFIG_HEAP_TRACING
#define TRACE_INIT \
if (!is_recovery_running) { \
ESP_ERROR_CHECK(heap_trace_init_tohost()); \
}
if(!is_recovery_running) { ESP_ERROR_CHECK(heap_trace_init_tohost()); }
#define TRACE_START \
if (!is_recovery_running) { \
ESP_ERROR_CHECK(heap_trace_start(HEAP_TRACE_ALL)); \
} \
#define TRACE_STOP if (!is_recovery_running) { ESP_ERROR_CHECK(heap_trace_stop()); }
if(!is_recovery_running) { ESP_ERROR_CHECK(heap_trace_start(HEAP_TRACE_ALL)); } \
#define TRACE_STOP if(!is_recovery_running) { ESP_ERROR_CHECK(heap_trace_stop()); }
#else
#define TRACE_START
#define TRACE_STOP