/hal_espressif-latest/components/wpa_supplicant/include/utils/ |
D | wpa_debug.h | 65 #define wpa_printf(level,fmt, args...) ESP_LOG_LEVEL_LOCAL(level, TAG, fmt, ##args) argument 66 #define wpa_dbg(ctx, level, fmt, args...) wpa_printf(level, fmt, ##args) argument 81 void wpa_hexdump(int level, const char *title, const u8 *buf, size_t len); 83 static inline void wpa_hexdump_ascii(int level, const char *title, const void *buf, size_t len) in wpa_hexdump_ascii() argument 85 wpa_hexdump(level, title, buf, len); in wpa_hexdump_ascii() 88 static inline void wpa_hexdump_ascii_key(int level, const char *title, const void *buf, size_t len) in wpa_hexdump_ascii_key() argument 90 wpa_hexdump(level, title, buf, len); in wpa_hexdump_ascii_key() 93 static inline void wpa_hexdump_buf(int level, const char *title, in wpa_hexdump_buf() argument 96 wpa_hexdump(level, title, wpabuf_head(buf), wpabuf_len(buf)); in wpa_hexdump_buf() 112 void wpa_hexdump_key(int level, const char *title, const u8 *buf, size_t len); [all …]
|
/hal_espressif-latest/components/log/ |
D | log.c | 51 uint32_t level : 3; member 57 uint8_t level; // esp_log_level_t as uint8_t member 73 static inline bool get_cached_log_level(const char *tag, esp_log_level_t *level); 74 static inline bool get_uncached_log_level(const char *tag, esp_log_level_t *level); 75 static inline void add_to_cache(const char *tag, esp_log_level_t level); 91 void esp_log_level_set(const char *tag, esp_log_level_t level) in esp_log_level_set() argument 97 esp_log_default_level = level; in esp_log_level_set() 108 it->level = level; in esp_log_level_set() 123 new_entry->level = (uint8_t) level; in esp_log_level_set() 134 s_log_cache[i].level = level; in esp_log_level_set() [all …]
|
D | README.rst | 9 - **At compile time**: in menuconfig, set the verbosity level using the option :ref:`CONFIG_LOG_DEF… 10 …t the maximum verbosity level using the option :ref:`CONFIG_LOG_MAXIMUM_LEVEL`. By default this is… 11 …. The function :cpp:func:`esp_log_level_set` can be used to set a logging level on a per module ba… 23 …higher than specified by :ref:`CONFIG_LOG_MAXIMUM_LEVEL`. To increase log level for a specific fil… 57 To override default verbosity level at file or component scope, define the ``LOG_LOCAL_LEVEL`` macr… 76 esp_log_level_set("*", ESP_LOG_ERROR); // set all components to ERROR level 82 …ways log at the "default" verbosity level, which can only be changed at runtime by calling ``esp_l…
|
D | Kconfig | 8 You can set lower verbosity level at runtime using 13 "Warning" would mean that changing log level to "Debug" 15 level above the default at runtime, see the next option. 45 at runtime by calling esp_log_level_set(). This level may be higher than 46 the default verbosity level which is set when the app starts up. 52 Note that increasing the maximum available log level will increase the firmware 55 This option only applies to logging from the app, the bootloader log level is
|
/hal_espressif-latest/components/mbedtls/port/ |
D | mbedtls_debug.c | 18 static void mbedtls_esp_debug(void *ctx, int level, 24 esp_log_level_t level = ESP_LOG_NONE; in mbedtls_esp_enable_debug_log() local 29 level = ESP_LOG_WARN; in mbedtls_esp_enable_debug_log() 32 level = ESP_LOG_INFO; in mbedtls_esp_enable_debug_log() 35 level = ESP_LOG_DEBUG; in mbedtls_esp_enable_debug_log() 38 level = ESP_LOG_VERBOSE; in mbedtls_esp_enable_debug_log() 41 esp_log_level_set(TAG, level); in mbedtls_esp_enable_debug_log() 53 static void mbedtls_esp_debug(void *ctx, int level, in mbedtls_esp_debug() argument 68 switch(level) { in mbedtls_esp_debug() 82 ESP_LOGE(TAG, "Unexpected log level %d: %s", level, str); in mbedtls_esp_debug()
|
/hal_espressif-latest/components/log/include/ |
D | esp_log.h | 61 void esp_log_level_set(const char* tag, esp_log_level_t level); 136 void esp_log_write(esp_log_level_t level, const char* tag, const char* format, ...) __attribute__ (… 145 void esp_log_writev(esp_log_level_t level, const char* tag, const char* format, va_list args); 170 #define ESP_LOG_BUFFER_HEX_LEVEL( tag, buffer, buff_len, level ) \ argument 172 if ( LOG_LOCAL_LEVEL >= (level) ) { \ 173 esp_log_buffer_hex_internal( tag, buffer, buff_len, level ); \ 186 #define ESP_LOG_BUFFER_CHAR_LEVEL( tag, buffer, buff_len, level ) \ argument 188 if ( LOG_LOCAL_LEVEL >= (level) ) { \ 189 esp_log_buffer_char_internal( tag, buffer, buff_len, level ); \ 209 #define ESP_LOG_BUFFER_HEXDUMP( tag, buffer, buff_len, level ) \ argument [all …]
|
D | esp_log_internal.h | 11 …buffer_hex_internal(const char *tag, const void *buffer, uint16_t buff_len, esp_log_level_t level); 12 …uffer_char_internal(const char *tag, const void *buffer, uint16_t buff_len, esp_log_level_t level);
|
/hal_espressif-latest/components/esp_hw_support/ |
D | esp_dpa_protection.c | 12 static inline void esp_crypto_dpa_set_level(esp_crypto_dpa_sec_level_t level) in esp_crypto_dpa_set_level() argument 14 assert(level >= ESP_CRYPTO_DPA_SEC_LEVEL_LOW && level <= ESP_CRYPTO_DPA_SEC_LEVEL_HIGH); in esp_crypto_dpa_set_level() 16 REG_SET_FIELD(HP_SYSTEM_SEC_DPA_CONF_REG, HP_SYSTEM_SEC_DPA_LEVEL, level); in esp_crypto_dpa_set_level() 26 void esp_crypto_dpa_protection_enable(esp_crypto_dpa_sec_level_t level) in esp_crypto_dpa_protection_enable() argument 28 esp_crypto_dpa_set_level(level); in esp_crypto_dpa_protection_enable()
|
/hal_espressif-latest/components/wpa_supplicant/src/utils/ |
D | wpa_debug.c | 82 void wpa_hexdump(int level, const char *title, const u8 *buf, size_t len) in wpa_hexdump() argument 88 if (level >= MSG_ERROR) in wpa_hexdump() 91 wpa_printf(level, "%s - hexdump(len=%lu):", title, (unsigned long) len); in wpa_hexdump() 93 wpa_printf(level, " [NULL]"); in wpa_hexdump() 97 wpa_printf(level, "%s", output); in wpa_hexdump() 103 wpa_printf(level, "%s", output); in wpa_hexdump() 109 void wpa_hexdump_key(int level, const char *title, const u8 *buf, size_t len) in wpa_hexdump_key() argument 111 wpa_hexdump(level, title, buf, len); in wpa_hexdump_key()
|
/hal_espressif-latest/components/hal/include/hal/ |
D | rtc_io_hal.h | 63 #define rtcio_hal_set_level(rtcio_num, level) rtcio_ll_set_level(rtcio_num, level) argument 109 #define rtcio_hal_set_level(rtcio_num, level) rtcio_ll_set_level(rtcio_num, level) argument 237 …define rtcio_hal_ext0_set_wakeup_pin(rtcio_num, level) rtcio_ll_ext0_set_wakeup_pin(rtcio_num,… argument
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/server/include/ |
D | state_binding.h | 41 int16_t level; member 90 uint16_t bt_mesh_covert_gen_level_to_temperature(int16_t level, uint16_t min, uint16_t max); 94 uint16_t bt_mesh_convert_level_to_hue(int16_t level); 98 uint16_t bt_mesh_convert_level_to_saturation(int16_t level);
|
D | generic_server.h | 32 int16_t level; member 213 int16_t level; member 216 int16_t level; member 219 int16_t level; member 289 int16_t level; member
|
/hal_espressif-latest/components/bootloader_support/src/ |
D | bootloader_common.c | 35 …ld_t bootloader_common_check_long_hold_gpio_level(uint32_t num_pin, uint32_t delay_sec, bool level) in bootloader_common_check_long_hold_gpio_level() argument 43 if (gpio_ll_get_level(&GPIO, num_pin) != level) { in bootloader_common_check_long_hold_gpio_level() 47 if (gpio_ll_get_level(&GPIO, num_pin) != level) { in bootloader_common_check_long_hold_gpio_level()
|
/hal_espressif-latest/tools/idf_monitor/idf_monitor_base/ |
D | line_matcher.py | 31 level = {'N': LEVEL_N, 'E': LEVEL_E, 'W': LEVEL_W, 'I': LEVEL_I, 'D': LEVEL_D, variable in LineMatcher 50 lev = self.level[s[1].upper()] 62 lev = self.level[m.group(1)]
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/server/ |
D | state_binding.c | 70 uint16_t bt_mesh_covert_gen_level_to_temperature(int16_t level, uint16_t min, uint16_t max) in bt_mesh_covert_gen_level_to_temperature() argument 73 uint16_t tmp = (uint16_t) ((level - INT16_MIN) * diff); in bt_mesh_covert_gen_level_to_temperature() 82 uint16_t bt_mesh_convert_level_to_hue(int16_t level) in bt_mesh_convert_level_to_hue() argument 84 return (uint16_t) (level - INT16_MIN); in bt_mesh_convert_level_to_hue() 92 uint16_t bt_mesh_convert_level_to_saturation(int16_t level) in bt_mesh_convert_level_to_saturation() argument 94 return (uint16_t) (level - INT16_MIN); in bt_mesh_convert_level_to_saturation() 129 srv->state.level = value->gen_level.level; in bt_mesh_update_binding_state()
|
/hal_espressif-latest/components/esp_system/port/soc/esp32c2/ |
D | Kconfig.system | 12 prompt "Brownout voltage level" 17 below this level. Note that there may be some variation of brownout voltage level
|
/hal_espressif-latest/components/esp_system/port/soc/esp32c3/ |
D | Kconfig.system | 12 prompt "Brownout voltage level" 17 below this level. Note that there may be some variation of brownout voltage level
|
/hal_espressif-latest/components/esp_system/port/soc/esp32c6/ |
D | Kconfig.system | 12 prompt "Brownout voltage level" 17 below this level. Note that there may be some variation of brownout voltage level
|
/hal_espressif-latest/components/hal/ |
D | Kconfig | 3 bool "Default HAL assertion level" 6 Set the assert behavior / level for HAL component. 7 HAL component assert level can be set separately, 8 but the level can't exceed the system assertion level. 15 bool "Same as system assertion level"
|
D | README.md | 7 …consists of function declarations and abstracted types that other, higher level components can mak… 10 The abstraction design is actually two levels -- often somtimes `xxx_hal.h` includes a lower-level … 14 …rgets; while code that are common/very similar might be placed in the top-level of `/<target>/incl… 16 As mentioned previously, the lower-level abstraction header `xxx_ll.h` resides in this directory, s…
|
/hal_espressif-latest/components/esp_system/port/soc/esp32h2/ |
D | Kconfig.system | 12 prompt "Brownout voltage level" 17 below this level. Note that there may be some variation of brownout voltage level
|
/hal_espressif-latest/components/esp_system/port/soc/esp32s3/ |
D | Kconfig.system | 13 prompt "Brownout voltage level" 18 below this level. Note that there may be some variation of brownout voltage level
|
/hal_espressif-latest/components/esp_hw_support/include/hal/ |
D | interrupt_controller_hal.h | 36 int level; member 149 …E_ATTR __attribute__((deprecated)) void interrupt_controller_hal_set_int_level(int intr, int level) in interrupt_controller_hal_set_int_level() argument 151 esp_cpu_intr_set_priority(intr, level); in interrupt_controller_hal_set_int_level()
|
/hal_espressif-latest/tools/esptool_py/esp_rfc2217_server/ |
D | __init__.py | 64 level = (logging.WARNING, logging.INFO, logging.DEBUG, logging.NOTSET)[ 67 logging.basicConfig(level=logging.INFO) 69 logging.getLogger("rfc2217").setLevel(level)
|
/hal_espressif-latest/components/esp_hw_support/include/ |
D | esp_wake_stub.h | 20 #define ESP_RTC_LOG( level, format, ... ) if (LOG_LOCAL_LEVEL >= level) { esp_rom_printf(RTC_STR(f… argument
|