From 2cc28d90fb9bc9ee88d58a6dd7c7da070af8e8cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20=C5=9Alusarz?= Date: Fri, 9 May 2025 12:56:27 +0200 Subject: [PATCH] feat(docs): Add note about including esp_check.h for error-handling.rst docs page --- docs/en/api-guides/error-handling.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/en/api-guides/error-handling.rst b/docs/en/api-guides/error-handling.rst index 9d22768f45..7ed5f32ee4 100644 --- a/docs/en/api-guides/error-handling.rst +++ b/docs/en/api-guides/error-handling.rst @@ -83,6 +83,9 @@ Error message will typically look like this: :c:macro:`ESP_ERROR_CHECK_WITHOUT_ABORT` macro serves similar purpose as ``ESP_ERROR_CHECK``, except that it will not call ``abort()``. +.. note:: + + Macros below require ``esp_check.h`` header file to be included .. _esp-return-on-error-macro: