trace.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. *
  3. * Sebastien L. 2023, sle118@hotmail.com
  4. * Philippe G. 2023, philippe_44@outlook.com
  5. *
  6. * This software is released under the MIT License.
  7. * https://opensource.org/licenses/MIT
  8. *
  9. * License Overview:
  10. * ----------------
  11. * The MIT License is a permissive open source license. As a user of this software, you are free to:
  12. * - Use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of this software.
  13. * - Use the software for private, commercial, or any other purposes.
  14. *
  15. * Conditions:
  16. * - You must include the above copyright notice and this permission notice in all
  17. * copies or substantial portions of the Software.
  18. *
  19. * The MIT License offers a high degree of freedom and is well-suited for both open source and
  20. * commercial applications. It places minimal restrictions on how the software can be used,
  21. * modified, and redistributed. For more details on the MIT License, please refer to the link above.
  22. */
  23. #pragma once
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. #ifdef CONFIG_HEAP_TRACING
  28. #define TRACE_INIT \
  29. if (!is_recovery_running) { \
  30. ESP_ERROR_CHECK(heap_trace_init_tohost()); \
  31. }
  32. #define TRACE_START \
  33. if (!is_recovery_running) { \
  34. ESP_ERROR_CHECK(heap_trace_start(HEAP_TRACE_ALL)); \
  35. } \
  36. #define TRACE_STOP if (!is_recovery_running) { ESP_ERROR_CHECK(heap_trace_stop()); }
  37. #else
  38. #define TRACE_START
  39. #define TRACE_STOP
  40. #define TRACE_INIT
  41. #endif
  42. #ifdef __cplusplus
  43. }
  44. #endif