Home
last modified time | relevance | path

Searched refs:level (Results 1 – 25 of 405) sorted by relevance

12345678910>>...17

/hal_espressif-2.7.6/components/wpa_supplicant/include/utils/
Dwpa_debug.h63 #define wpa_printf(level,fmt, args...) ESP_LOG_LEVEL_LOCAL(level, TAG, fmt, ##args) argument
64 #define wpa_dbg(ctx, level, fmt, args...) wpa_printf(level, fmt, ##args) argument
67 static inline void wpa_hexdump_ascii(int level, const char *title, const u8 *buf, size_t len) in wpa_hexdump_ascii() argument
72 static inline void wpa_hexdump_ascii_key(int level, const char *title, const u8 *buf, size_t len) in wpa_hexdump_ascii_key() argument
87 void wpa_hexdump(int level, const char *title, const u8 *buf, size_t len);
89 static inline void wpa_hexdump_buf(int level, const char *title, in wpa_hexdump_buf() argument
92 wpa_hexdump(level, title, wpabuf_head(buf), wpabuf_len(buf)); in wpa_hexdump_buf()
108 void wpa_hexdump_key(int level, const char *title, const u8 *buf, size_t len);
111 static inline void wpa_hexdump_buf_key(int level, const char *title, in wpa_hexdump_buf_key() argument
114 wpa_hexdump_key(level, title, wpabuf_head(buf), wpabuf_len(buf)); in wpa_hexdump_buf_key()
[all …]
/hal_espressif-2.7.6/components/log/
Dlog.c62 uint32_t level : 3; member
68 uint8_t level; // esp_log_level_t as uint8_t member
85 static inline bool get_cached_log_level(const char *tag, esp_log_level_t *level);
86 static inline bool get_uncached_log_level(const char *tag, esp_log_level_t *level);
87 static inline void add_to_cache(const char *tag, esp_log_level_t level);
102 void esp_log_level_set(const char *tag, esp_log_level_t level) in esp_log_level_set() argument
108 s_log_default_level = level; in esp_log_level_set()
119 it->level = level; in esp_log_level_set()
134 new_entry->level = (uint8_t) level; in esp_log_level_set()
145 s_log_cache[i].level = level; in esp_log_level_set()
[all …]
DREADME.rst9 - **At compile time**: in menuconfig, set the verbosity level using the option :envvar:`CONFIG_LOG_…
10 …. The function :cpp:func:`esp_log_level_set` can be used to set a logging level on a per module ba…
22 …her than specified by :envvar:`CONFIG_LOG_DEFAULT_LEVEL`. To increase log level for a specific fil…
50 To override default verbosity level at file or component scope, define the ``LOG_LOCAL_LEVEL`` macr…
69 esp_log_level_set("*", ESP_LOG_ERROR); // set all components to ERROR level
/hal_espressif-2.7.6/components/mbedtls/port/
Dmbedtls_debug.c26 static void mbedtls_esp_debug(void *ctx, int level,
32 esp_log_level_t level = ESP_LOG_NONE; in mbedtls_esp_enable_debug_log() local
37 level = ESP_LOG_WARN; in mbedtls_esp_enable_debug_log()
40 level = ESP_LOG_INFO; in mbedtls_esp_enable_debug_log()
43 level = ESP_LOG_DEBUG; in mbedtls_esp_enable_debug_log()
46 level = ESP_LOG_VERBOSE; in mbedtls_esp_enable_debug_log()
49 esp_log_level_set(TAG, level); in mbedtls_esp_enable_debug_log()
61 static void mbedtls_esp_debug(void *ctx, int level, in mbedtls_esp_debug() argument
76 switch(level) { in mbedtls_esp_debug()
90 ESP_LOGE(TAG, "Unexpected log level %d: %s", level, str); in mbedtls_esp_debug()
/hal_espressif-2.7.6/components/log/include/
Desp_log.h69 void esp_log_level_set(const char* tag, esp_log_level_t level);
131 void esp_log_write(esp_log_level_t level, const char* tag, const char* format, ...) __attribute__ (…
140 void esp_log_writev(esp_log_level_t level, const char* tag, const char* format, va_list args);
161 #define ESP_LOG_BUFFER_HEX_LEVEL( tag, buffer, buff_len, level ) \ argument
163 if ( LOG_LOCAL_LEVEL >= (level) ) { \
164 esp_log_buffer_hex_internal( tag, buffer, buff_len, level ); \
177 #define ESP_LOG_BUFFER_CHAR_LEVEL( tag, buffer, buff_len, level ) \ argument
179 if ( LOG_LOCAL_LEVEL >= (level) ) { \
180 esp_log_buffer_char_internal( tag, buffer, buff_len, level ); \
200 #define ESP_LOG_BUFFER_HEXDUMP( tag, buffer, buff_len, level ) \ argument
[all …]
Desp_log_internal.h19 …buffer_hex_internal(const char *tag, const void *buffer, uint16_t buff_len, esp_log_level_t level);
20 …uffer_char_internal(const char *tag, const void *buffer, uint16_t buff_len, esp_log_level_t level);
/hal_espressif-2.7.6/components/driver/test/
Dtest_rtcio.c95 uint32_t level = cnt % 2; variable
96 ESP_LOGI(TAG, "RTCIO output level %d", level);
99 RTCIO_CHECK( rtc_gpio_set_level(i, level) );
101 if (rtc_gpio_get_level(i) != level) {
138 uint32_t level = cnt % 2; variable
139 ESP_LOGI(TAG, "RTCIO pull level %d", level);
143 if (level) {
151 if (rtc_gpio_get_level(s_test_map[i]) != level) {
187 uint32_t level = cnt % 2; variable
188 ESP_LOGI(TAG, "RTCIO output level %d", level);
[all …]
Dtest_gpio.c257 int level = 0; variable
264 level = level + 1;
265 gpio_set_level(TEST_GPIO_EXT_OUT_IO, level*0.2);
266 if(level > 10) {
274 level = level - 1;
275 gpio_set_level(TEST_GPIO_EXT_OUT_IO, level/5);
276 if(level < 0) {
430 int level = gpio_get_level(num);
431 printf("gpio17's level is: %d\n", level);
432 TEST_ASSERT_EQUAL_INT_MESSAGE(level, 1, "get level error! the level should be high!");
[all …]
Dtest_adc2_with_wifi.c204 for (int level = 0; level <= 1; level++) { in i2s_adc_test() local
205 if (level == 0) { in i2s_adc_test()
222 if (level == 0) { in i2s_adc_test()
/hal_espressif-2.7.6/examples/system/console/components/cmd_system/
Dcmd_system.c221 int level = 0; in deep_sleep() local
223 level = deep_sleep_args.wakeup_gpio_level->ival[0]; in deep_sleep()
224 if (level != 0 && level != 1) { in deep_sleep()
225 ESP_LOGE(TAG, "Invalid wakeup level: %d", level); in deep_sleep()
230 io_num, level ? "HIGH" : "LOW"); in deep_sleep()
232 ESP_ERROR_CHECK( esp_sleep_enable_ext1_wakeup(1ULL << io_num, level) ); in deep_sleep()
304 int level = light_sleep_args.wakeup_gpio_level->ival[i]; in light_sleep() local
305 if (level != 0 && level != 1) { in light_sleep()
306 ESP_LOGE(TAG, "Invalid wakeup level: %d", level); in light_sleep()
310 io_num, level ? "HIGH" : "LOW"); in light_sleep()
[all …]
/hal_espressif-2.7.6/components/wpa_supplicant/src/utils/
Dwpa_debug.c88 void wpa_hexdump(int level, const char *title, const u8 *buf, size_t len) in wpa_hexdump() argument
94 if (level < MSG_ERROR) in wpa_hexdump()
97 wpa_printf(level, "%s - hexdump(len=%lu):", title, (unsigned long) len); in wpa_hexdump()
99 wpa_printf(level, " [NULL]"); in wpa_hexdump()
103 wpa_printf(level, "%s", output); in wpa_hexdump()
109 wpa_printf(level, "%s", output); in wpa_hexdump()
115 void wpa_hexdump_key(int level, const char *title, const u8 *buf, size_t len) in wpa_hexdump_key() argument
117 wpa_hexdump(level, title, buf, len); in wpa_hexdump_key()
/hal_espressif-2.7.6/components/hal/include/hal/
Drtc_io_hal.h65 #define rtcio_hal_set_level(rtcio_num, level) rtcio_ll_set_level(rtcio_num, level) argument
111 #define rtcio_hal_set_level(rtcio_num, level) rtcio_ll_set_level(rtcio_num, level) argument
239 …define rtcio_hal_ext0_set_wakeup_pin(rtcio_num, level) rtcio_ll_ext0_set_wakeup_pin(rtcio_num,… argument
/hal_espressif-2.7.6/tools/ci/python_packages/ttfw_idf/
D__init__.py112 def test_func_generator(func, app, target, ci_target, module, execution_time, level, erase_nvs, **k… argument
123 module=module, execution_time=execution_time, level=level, erase_nvs=erase_nvs,
132 level='example', erase_nvs=True, config_name=None, **kwargs): argument
148 …return test_func_generator(func, app, target, ci_target, module, execution_time, level, erase_nvs,…
154 level='unit', erase_nvs=True, **kwargs): argument
169 …return test_func_generator(func, app, target, ci_target, module, execution_time, level, erase_nvs,…
175 level='integration', erase_nvs=True, config_name=None, **kwargs): argument
191 …return test_func_generator(func, app, target, ci_target, module, execution_time, level, erase_nvs,…
197 level='integration', erase_nvs=True, config_name=None, **kwargs): argument
214 …return test_func_generator(func, app, target, ci_target, module, execution_time, level, erase_nvs,…
/hal_espressif-2.7.6/components/bt/esp_ble_mesh/mesh_models/server/include/
Dstate_binding.h41 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);
Dgeneric_server.h32 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-2.7.6/components/openssl/
DKconfig18 int "OpenSSL debugging level"
23 OpenSSL debugging level.
25 Only function whose debugging level is higher than "OPENSSL_DEBUG_LEVEL" works.
32 bool "Enable OpenSSL low-level module debugging"
37 …If the option is enabled, low-level module debugging function of OpenSSL is enabled, e.g. mbedtls …
/hal_espressif-2.7.6/examples/system/deep_sleep/main/
DKconfig.projbuild37level to trigger wakeup, we strongly recommand you to connect external pull-up resistance.
48 bool "Enable GPIO high-level wakeup"
51 … This option set the gpio wake-up trigger signal, In deep sleep, only high or low level wake-up is
52 …supported. If this option is enabled, it is a high level wake up, otherwise it is a low level wake…
/hal_espressif-2.7.6/examples/bluetooth/nimble/blemesh/main/
Dapp_mesh.c255 int16_t level; in gen_level_set() local
257 level = (int16_t) net_buf_simple_pull_le16(buf); in gen_level_set()
258 ESP_LOGI(tag, "#mesh-level SET: level=%d\n", level); in gen_level_set()
262 gen_level_state = level; in gen_level_set()
270 int16_t level; in gen_level_set_unack() local
272 level = (int16_t) net_buf_simple_pull_le16(buf); in gen_level_set_unack()
273 ESP_LOGI(tag, "#mesh-level SET-UNACK: level=%d\n", level); in gen_level_set_unack()
275 gen_level_state = level; in gen_level_set_unack()
/hal_espressif-2.7.6/components/bt/esp_ble_mesh/mesh_models/server/
Dstate_binding.c70 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-2.7.6/components/openssl/include/internal/
Dssl_dbg.h47 #define SSL_DEBUG(level, fmt, ...) \ argument
49 if (level > SSL_DEBUG_LEVEL) { \
56 #define SSL_DEBUG(level, fmt, ...)
/hal_espressif-2.7.6/components/mbedtls/port/dynamic/
Desp_ssl_tls.c22 int __real_mbedtls_ssl_send_alert_message(mbedtls_ssl_context *ssl, unsigned char level, unsigned c…
30 int __wrap_mbedtls_ssl_send_alert_message(mbedtls_ssl_context *ssl, unsigned char level, unsigned c…
138 int __wrap_mbedtls_ssl_send_alert_message(mbedtls_ssl_context *ssl, unsigned char level, unsigned c… in __wrap_mbedtls_ssl_send_alert_message() argument
144 ret = __real_mbedtls_ssl_send_alert_message(ssl, level, message); in __wrap_mbedtls_ssl_send_alert_message()
/hal_espressif-2.7.6/components/coap/port/
Dcoap_debug.c78 coap_set_log_level(coap_log_t level) { in coap_set_log_level() argument
79 maxlog = level; in coap_set_log_level()
462 coap_log(level, "%s", outbuf); \
467 coap_show_pdu(coap_log_t level, const coap_pdu_t *pdu) { in coap_show_pdu() argument
486 if (level > coap_get_log_level()) in coap_show_pdu()
671 void coap_show_tls_version(coap_log_t level) in coap_show_tls_version() argument
675 coap_log(level, "%s\n", buffer); in coap_show_tls_version()
777 coap_log_impl(coap_log_t level, const char *format, ...) { in coap_log_impl() argument
779 if (maxlog < level) in coap_log_impl()
797 log_handler(level, message); in coap_log_impl()
[all …]
/hal_espressif-2.7.6/components/hal/esp32s3/include/hal/
Drtc_io_ll.h95 static inline void rtcio_ll_set_level(int rtcio_num, uint32_t level) in rtcio_ll_set_level() argument
97 if (level) { in rtcio_ll_set_level()
357 static inline void rtcio_ll_ext0_set_wakeup_pin(int rtcio_num, int level) in rtcio_ll_ext0_set_wakeup_pin() argument
362 level , RTC_CNTL_EXT_WAKEUP0_LV_S); in rtcio_ll_ext0_set_wakeup_pin()
/hal_espressif-2.7.6/components/hal/
DREADME.md7 …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-2.7.6/docs/en/api-guides/
Dhlinterrupts.rst7 …loc>`. Normally, interrupts will be written in C, but ESP-IDF allows high-level interrupts to be w…
15 1 N/A Exception and level 0 interrupts. Handled by ESP-IDF
16 2-3 N/A Medium level interrupts. Handled by ESP-IDF
40 …- Do not call C code from a high-level interrupt; because these interrupts still run in critical s…
65 …- High-level interrupts can be routed and handled using esp_intr_alloc and associated functions. T…

12345678910>>...17