bugfix/esp32: add cpp guard headers for app_trace component so that its

API's can be can be used in cpp files.
This commit is contained in:
Aditya Patwardhan
2019-11-26 17:44:15 +05:30
parent 899f3decab
commit 320608c85a
3 changed files with 24 additions and 0 deletions

View File

@@ -14,6 +14,10 @@
#ifndef ESP_APP_TRACE_UTIL_H_
#define ESP_APP_TRACE_UTIL_H_
#ifdef __cplusplus
extern "C" {
#endif
#include "freertos/FreeRTOS.h"
#include "esp_err.h"
@@ -164,4 +168,8 @@ uint32_t esp_apptrace_rb_read_size_get(esp_apptrace_rb_t *rb);
*/
uint32_t esp_apptrace_rb_write_size_get(esp_apptrace_rb_t *rb);
#ifdef __cplusplus
}
#endif
#endif //ESP_APP_TRACE_UTIL_H_