2021-04-12 02:02:59 -04:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2017-08-21 10:03:53 -04:00
|
|
|
|
|
|
|
#ifndef __ESP_LOG_INTERNAL_H__
|
|
|
|
#define __ESP_LOG_INTERNAL_H__
|
|
|
|
|
2018-01-04 23:58:00 -05:00
|
|
|
//these functions do not check level versus ESP_LOCAL_LEVEL, this should be done in esp_log.h
|
2017-08-21 10:03:53 -04:00
|
|
|
void esp_log_buffer_hex_internal(const char *tag, const void *buffer, uint16_t buff_len, esp_log_level_t level);
|
|
|
|
void esp_log_buffer_char_internal(const char *tag, const void *buffer, uint16_t buff_len, esp_log_level_t level);
|
|
|
|
void esp_log_buffer_hexdump_internal( const char *tag, const void *buffer, uint16_t buff_len, esp_log_level_t log_level);
|
|
|
|
|
|
|
|
#endif
|