mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-06-18 21:03:17 +08:00
feature/wifi-provisioning: Changes to make wifi-provisioning compatible with ESP8266.
Changes: Added Config to enable wifi-provisioning and protocomm & their pre-requisites. Changed sdkconfig.defaults, apt headers, esp_log_internal.h for compilation. Removed console, ble provisioning examples. Modified esp_prov to enable only softap transport.
This commit is contained in:
@ -16,9 +16,13 @@
|
||||
#define __ESP_LOG_INTERNAL_H__
|
||||
|
||||
//these functions do not check level versus ESP_LOCAL_LEVEL, this should be done in esp_log.h
|
||||
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);
|
||||
#define esp_log_buffer_hex_internal(...)
|
||||
#define esp_log_buffer_char_internal(...)
|
||||
#define esp_log_buffer_hexdump_internal(...)
|
||||
/* TODO: Add the implementation of the below API's */
|
||||
// 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
|
||||
|
||||
|
Reference in New Issue
Block a user