]> granicus.if.org Git - esp-idf/commitdiff
Update to ESP_ERROR_CHECK
authorNeil Kolban <kolban1@kolban.com>
Tue, 14 Feb 2017 05:03:04 +0000 (23:03 -0600)
committerAngus Gratton <angus@espressif.com>
Fri, 17 Mar 2017 10:12:41 +0000 (18:12 +0800)
See request from ESP_Angus here:
https://esp32.com/viewtopic.php?f=18&t=1179

Merges #339 https://github.com/espressif/esp-idf/pull/339

components/esp32/include/esp_err.h

index b6a1e8b42152b3649729569979061cd836def7a8..059b5973512d5969e6ec35003f50321b9328077b 100644 (file)
@@ -45,7 +45,7 @@ typedef int32_t esp_err_t;
  * and terminate the program in case the code is not ESP_OK.
  * Prints the failed statement to serial output.
  */
-#define ESP_ERROR_CHECK(x)   do { esp_err_t rc = (x); if (rc != ESP_OK) { assert(0 && #x);} } while(0);
+#define ESP_ERROR_CHECK(x)   do { esp_err_t rc = (x); if (rc != ESP_OK) { ESP_LOGE("err", "esp_err_t = %d", rc); assert(0 && #x);} } while(0);
 
 #ifdef __cplusplus
 }