| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309 |
- // Copyright 2021 Espressif Systems (Shanghai) PTE LTD
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- #pragma once
- #include "esp_err.h"
- #include "esp_log.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- /**
- * Macro which can be used to check the error code. If the code is not ESP_OK, it prints the message and returns.
- */
- #if defined(CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT)
- #define ESP_RETURN_ON_ERROR(x, log_tag, format, ...) do { \
- esp_err_t err_rc_ = (x); \
- if (unlikely(err_rc_ != ESP_OK)) { \
- return err_rc_; \
- } \
- } while(0)
- /**
- * A version of ESP_RETURN_ON_ERROR() macro that can be called from ISR.
- */
- #define ESP_RETURN_ON_ERROR_ISR(x, log_tag, format, ...) do { \
- esp_err_t err_rc_ = (x); \
- if (unlikely(err_rc_ != ESP_OK)) { \
- return err_rc_; \
- } \
- } while(0)
- /**
- * Macro which can be used to check the error code. If the code is not ESP_OK, it prints the message,
- * sets the local variable 'ret' to the code, and then exits by jumping to 'goto_tag'.
- */
- #define ESP_GOTO_ON_ERROR(x, goto_tag, log_tag, format, ...) do { \
- esp_err_t err_rc_ = (x); \
- if (unlikely(err_rc_ != ESP_OK)) { \
- ret = err_rc_; \
- goto goto_tag; \
- } \
- } while(0)
- /**
- * A version of ESP_GOTO_ON_ERROR() macro that can be called from ISR.
- */
- #define ESP_GOTO_ON_ERROR_ISR(x, goto_tag, log_tag, format, ...) do { \
- esp_err_t err_rc_ = (x); \
- if (unlikely(err_rc_ != ESP_OK)) { \
- ret = err_rc_; \
- goto goto_tag; \
- } \
- } while(0)
- /**
- * Macro which can be used to check the condition. If the condition is not 'true', it prints the message
- * and returns with the supplied 'err_code'.
- */
- #define ESP_RETURN_ON_FALSE(a, err_code, log_tag, format, ...) do { \
- if (unlikely(!(a))) { \
- return err_code; \
- } \
- } while(0)
- /**
- * A version of ESP_RETURN_ON_FALSE() macro that can be called from ISR.
- */
- #define ESP_RETURN_ON_FALSE_ISR(a, err_code, log_tag, format, ...) do { \
- if (unlikely(!(a))) { \
- return err_code; \
- } \
- } while(0)
- /**
- * Macro which can be used to check the condition. If the condition is not 'true', it prints the message,
- * sets the local variable 'ret' to the supplied 'err_code', and then exits by jumping to 'goto_tag'.
- */
- #define ESP_GOTO_ON_FALSE(a, err_code, goto_tag, log_tag, format, ...) do { \
- if (unlikely(!(a))) { \
- ret = err_code; \
- goto goto_tag; \
- } \
- } while (0)
- /**
- * A version of ESP_GOTO_ON_FALSE() macro that can be called from ISR.
- */
- #define ESP_GOTO_ON_FALSE_ISR(a, err_code, goto_tag, log_tag, format, ...) do { \
- if (unlikely(!(a))) { \
- ret = err_code; \
- goto goto_tag; \
- } \
- } while (0)
- #else // !CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT
- /**
- * In the future, we want to switch to C++20. We also want to become compatible with clang.
- * Hence, we provide two versions of the following macros. The first one is using the GNU extension \#\#__VA_ARGS__.
- * The second one is using the C++20 feature __VA_OPT__(,). This allows users to compile their code with
- * standard C++20 enabled instead of the GNU extension. Below C++20, we haven't found any good alternative to
- * using \#\#__VA_ARGS__.
- */
- #if defined(__cplusplus) && (__cplusplus > 201703L)
- /**
- * Macro which can be used to check the error code. If the code is not ESP_OK, it prints the message and returns.
- */
- #define ESP_RETURN_ON_ERROR(x, log_tag, format, ...) do { \
- esp_err_t err_rc_ = (x); \
- if (unlikely(err_rc_ != ESP_OK)) { \
- ESP_LOGE(log_tag, "%s(%d): " format, __FUNCTION__, __LINE__ __VA_OPT__(,) __VA_ARGS__); \
- return err_rc_; \
- } \
- } while(0)
- /**
- * A version of ESP_RETURN_ON_ERROR() macro that can be called from ISR.
- */
- #define ESP_RETURN_ON_ERROR_ISR(x, log_tag, format, ...) do { \
- esp_err_t err_rc_ = (x); \
- if (unlikely(err_rc_ != ESP_OK)) { \
- ESP_EARLY_LOGE(log_tag, "%s(%d): " format, __FUNCTION__, __LINE__ __VA_OPT__(,) __VA_ARGS__); \
- return err_rc_; \
- } \
- } while(0)
- /**
- * Macro which can be used to check the error code. If the code is not ESP_OK, it prints the message,
- * sets the local variable 'ret' to the code, and then exits by jumping to 'goto_tag'.
- */
- #define ESP_GOTO_ON_ERROR(x, goto_tag, log_tag, format, ...) do { \
- esp_err_t err_rc_ = (x); \
- if (unlikely(err_rc_ != ESP_OK)) { \
- ESP_LOGE(log_tag, "%s(%d): " format, __FUNCTION__, __LINE__ __VA_OPT__(,) __VA_ARGS__); \
- ret = err_rc_; \
- goto goto_tag; \
- } \
- } while(0)
- /**
- * A version of ESP_GOTO_ON_ERROR() macro that can be called from ISR.
- */
- #define ESP_GOTO_ON_ERROR_ISR(x, goto_tag, log_tag, format, ...) do { \
- esp_err_t err_rc_ = (x); \
- if (unlikely(err_rc_ != ESP_OK)) { \
- ESP_EARLY_LOGE(log_tag, "%s(%d): " format, __FUNCTION__, __LINE__ __VA_OPT__(,) __VA_ARGS__); \
- ret = err_rc_; \
- goto goto_tag; \
- } \
- } while(0)
- /**
- * Macro which can be used to check the condition. If the condition is not 'true', it prints the message
- * and returns with the supplied 'err_code'.
- */
- #define ESP_RETURN_ON_FALSE(a, err_code, log_tag, format, ...) do { \
- if (unlikely(!(a))) { \
- ESP_LOGE(log_tag, "%s(%d): " format, __FUNCTION__, __LINE__ __VA_OPT__(,) __VA_ARGS__); \
- return err_code; \
- } \
- } while(0)
- /**
- * A version of ESP_RETURN_ON_FALSE() macro that can be called from ISR.
- */
- #define ESP_RETURN_ON_FALSE_ISR(a, err_code, log_tag, format, ...) do { \
- if (unlikely(!(a))) { \
- ESP_EARLY_LOGE(log_tag, "%s(%d): " format, __FUNCTION__, __LINE__ __VA_OPT__(,) __VA_ARGS__); \
- return err_code; \
- } \
- } while(0)
- /**
- * Macro which can be used to check the condition. If the condition is not 'true', it prints the message,
- * sets the local variable 'ret' to the supplied 'err_code', and then exits by jumping to 'goto_tag'.
- */
- #define ESP_GOTO_ON_FALSE(a, err_code, goto_tag, log_tag, format, ...) do { \
- if (unlikely(!(a))) { \
- ESP_LOGE(log_tag, "%s(%d): " format, __FUNCTION__, __LINE__ __VA_OPT__(,) __VA_ARGS__); \
- ret = err_code; \
- goto goto_tag; \
- } \
- } while (0)
- /**
- * A version of ESP_GOTO_ON_FALSE() macro that can be called from ISR.
- */
- #define ESP_GOTO_ON_FALSE_ISR(a, err_code, goto_tag, log_tag, format, ...) do { \
- if (unlikely(!(a))) { \
- ESP_EARLY_LOGE(log_tag, "%s(%d): " format, __FUNCTION__, __LINE__ __VA_OPT__(,) __VA_ARGS__); \
- ret = err_code; \
- goto goto_tag; \
- } \
- } while (0)
- #else // !(defined(__cplusplus) && (__cplusplus > 201703L))
- /**
- * Macro which can be used to check the error code. If the code is not ESP_OK, it prints the message and returns.
- */
- #define ESP_RETURN_ON_ERROR(x, log_tag, format, ...) do { \
- esp_err_t err_rc_ = (x); \
- if (unlikely(err_rc_ != ESP_OK)) { \
- ESP_LOGE(log_tag, "%s(%d): " format, __FUNCTION__, __LINE__, ##__VA_ARGS__); \
- return err_rc_; \
- } \
- } while(0)
- /**
- * A version of ESP_RETURN_ON_ERROR() macro that can be called from ISR.
- */
- #define ESP_RETURN_ON_ERROR_ISR(x, log_tag, format, ...) do { \
- esp_err_t err_rc_ = (x); \
- if (unlikely(err_rc_ != ESP_OK)) { \
- ESP_EARLY_LOGE(log_tag, "%s(%d): " format, __FUNCTION__, __LINE__, ##__VA_ARGS__); \
- return err_rc_; \
- } \
- } while(0)
- /**
- * Macro which can be used to check the error code. If the code is not ESP_OK, it prints the message,
- * sets the local variable 'ret' to the code, and then exits by jumping to 'goto_tag'.
- */
- #define ESP_GOTO_ON_ERROR(x, goto_tag, log_tag, format, ...) do { \
- esp_err_t err_rc_ = (x); \
- if (unlikely(err_rc_ != ESP_OK)) { \
- ESP_LOGE(log_tag, "%s(%d): " format, __FUNCTION__, __LINE__, ##__VA_ARGS__); \
- ret = err_rc_; \
- goto goto_tag; \
- } \
- } while(0)
- /**
- * A version of ESP_GOTO_ON_ERROR() macro that can be called from ISR.
- */
- #define ESP_GOTO_ON_ERROR_ISR(x, goto_tag, log_tag, format, ...) do { \
- esp_err_t err_rc_ = (x); \
- if (unlikely(err_rc_ != ESP_OK)) { \
- ESP_EARLY_LOGE(log_tag, "%s(%d): " format, __FUNCTION__, __LINE__, ##__VA_ARGS__); \
- ret = err_rc_; \
- goto goto_tag; \
- } \
- } while(0)
- /**
- * Macro which can be used to check the condition. If the condition is not 'true', it prints the message
- * and returns with the supplied 'err_code'.
- */
- #define ESP_RETURN_ON_FALSE(a, err_code, log_tag, format, ...) do { \
- if (unlikely(!(a))) { \
- ESP_LOGE(log_tag, "%s(%d): " format, __FUNCTION__, __LINE__, ##__VA_ARGS__); \
- return err_code; \
- } \
- } while(0)
- /**
- * A version of ESP_RETURN_ON_FALSE() macro that can be called from ISR.
- */
- #define ESP_RETURN_ON_FALSE_ISR(a, err_code, log_tag, format, ...) do { \
- if (unlikely(!(a))) { \
- ESP_EARLY_LOGE(log_tag, "%s(%d): " format, __FUNCTION__, __LINE__, ##__VA_ARGS__); \
- return err_code; \
- } \
- } while(0)
- /**
- * Macro which can be used to check the condition. If the condition is not 'true', it prints the message,
- * sets the local variable 'ret' to the supplied 'err_code', and then exits by jumping to 'goto_tag'.
- */
- #define ESP_GOTO_ON_FALSE(a, err_code, goto_tag, log_tag, format, ...) do { \
- if (unlikely(!(a))) { \
- ESP_LOGE(log_tag, "%s(%d): " format, __FUNCTION__, __LINE__, ##__VA_ARGS__); \
- ret = err_code; \
- goto goto_tag; \
- } \
- } while (0)
- /**
- * A version of ESP_GOTO_ON_FALSE() macro that can be called from ISR.
- */
- #define ESP_GOTO_ON_FALSE_ISR(a, err_code, goto_tag, log_tag, format, ...) do { \
- if (unlikely(!(a))) { \
- ESP_EARLY_LOGE(log_tag, "%s(%d): " format, __FUNCTION__, __LINE__, ##__VA_ARGS__); \
- ret = err_code; \
- goto goto_tag; \
- } \
- } while (0)
- #endif // !(defined(__cplusplus) && (__cplusplus > 201703L))
- #endif // !CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT
- #ifdef __cplusplus
- }
- #endif
|