Home
last modified time | relevance | path

Searched refs:value (Results 1 – 25 of 377) sorted by relevance

12345678910>>...16

/hal_espressif-latest/components/hal/esp32s3/include/hal/
Ddedic_gpio_cpu_ll.h27 uint32_t value = 0; in dedic_gpio_cpu_ll_read_in() local
28 asm volatile("ee.get_gpio_in %0" : "=r"(value) : :); in dedic_gpio_cpu_ll_read_in()
29 return value; in dedic_gpio_cpu_ll_read_in()
35 uint32_t value = 0; in dedic_gpio_cpu_ll_read_out() local
36 asm volatile("rur.gpio_out %0" : "=r"(value) : :); in dedic_gpio_cpu_ll_read_out()
37 return value; in dedic_gpio_cpu_ll_read_out()
41 static inline void dedic_gpio_cpu_ll_write_all(uint32_t value) in dedic_gpio_cpu_ll_write_all() argument
43 asm volatile("wur.gpio_out %0"::"r"(value):); in dedic_gpio_cpu_ll_write_all()
47 static inline void dedic_gpio_cpu_ll_write_mask(uint32_t mask, uint32_t value) in dedic_gpio_cpu_ll_write_mask() argument
49 asm volatile("ee.wr_mask_gpio_out %0, %1" : : "r"(value), "r"(mask):); in dedic_gpio_cpu_ll_write_mask()
Dpcnt_ll.h96 int16_t value = cnt_reg.pulse_cnt_un; in pcnt_ll_get_count() local
97 return value; in pcnt_ll_get_count()
249 static inline void pcnt_ll_set_high_limit_value(pcnt_dev_t *hw, uint32_t unit, int value) in pcnt_ll_set_high_limit_value() argument
252 conf2_reg.cnt_h_lim_un = value; in pcnt_ll_set_high_limit_value()
263 static inline void pcnt_ll_set_low_limit_value(pcnt_dev_t *hw, uint32_t unit, int value) in pcnt_ll_set_low_limit_value() argument
266 conf2_reg.cnt_l_lim_un = value; in pcnt_ll_set_low_limit_value()
278 static inline void pcnt_ll_set_thres_value(pcnt_dev_t *hw, uint32_t unit, uint32_t thres, int value) in pcnt_ll_set_thres_value() argument
282 conf1_reg.cnt_thres0_un = value; in pcnt_ll_set_thres_value()
284 conf1_reg.cnt_thres1_un = value; in pcnt_ll_set_thres_value()
299 int16_t value = conf2_reg.cnt_h_lim_un; in pcnt_ll_get_high_limit_value() local
[all …]
/hal_espressif-latest/components/hal/esp32s2/include/hal/
Ddedic_gpio_cpu_ll.h18 uint32_t value = 0; in dedic_gpio_cpu_ll_read_in() local
19 asm volatile("get_gpio_in %0" : "=r"(value) : :); in dedic_gpio_cpu_ll_read_in()
20 return value; in dedic_gpio_cpu_ll_read_in()
26 uint32_t value = 0; in dedic_gpio_cpu_ll_read_out() local
27 asm volatile("rur.gpio_out %0" : "=r"(value) : :); in dedic_gpio_cpu_ll_read_out()
28 return value; in dedic_gpio_cpu_ll_read_out()
32 static inline void dedic_gpio_cpu_ll_write_all(uint32_t value) in dedic_gpio_cpu_ll_write_all() argument
34 asm volatile("wur.gpio_out %0"::"r"(value):); in dedic_gpio_cpu_ll_write_all()
38 static inline void dedic_gpio_cpu_ll_write_mask(uint32_t mask, uint32_t value) in dedic_gpio_cpu_ll_write_mask() argument
40 asm volatile("wr_mask_gpio_out %0, %1" : : "r"(value), "r"(mask):); in dedic_gpio_cpu_ll_write_mask()
Dpcnt_ll.h96 int16_t value = cnt_reg.pulse_cnt_un; in pcnt_ll_get_count() local
97 return value; in pcnt_ll_get_count()
249 static inline void pcnt_ll_set_high_limit_value(pcnt_dev_t *hw, uint32_t unit, int value) in pcnt_ll_set_high_limit_value() argument
252 conf2_reg.cnt_h_lim_un = value; in pcnt_ll_set_high_limit_value()
263 static inline void pcnt_ll_set_low_limit_value(pcnt_dev_t *hw, uint32_t unit, int value) in pcnt_ll_set_low_limit_value() argument
266 conf2_reg.cnt_l_lim_un = value; in pcnt_ll_set_low_limit_value()
278 static inline void pcnt_ll_set_thres_value(pcnt_dev_t *hw, uint32_t unit, uint32_t thres, int value) in pcnt_ll_set_thres_value() argument
282 conf1_reg.cnt_thres0_un = value; in pcnt_ll_set_thres_value()
284 conf1_reg.cnt_thres1_un = value; in pcnt_ll_set_thres_value()
299 int16_t value = conf2_reg.cnt_h_lim_un; in pcnt_ll_get_high_limit_value() local
[all …]
/hal_espressif-latest/tools/esptool_py/docs/_static/
Desptool_versions.js7 { text: "ESP8266", value: "esp8266" },
8 { text: "ESP32", value: "esp32" },
9 { text: "ESP32-S2", value: "esp32s2" },
10 { text: "ESP32-S3", value: "esp32s3" },
11 { text: "ESP32-C3", value: "esp32c3" },
12 { text: "ESP32-C2", value: "esp32c2" },
13 { text: "ESP32-C6", value: "esp32c6" },
14 { text: "ESP32-H2", value: "esp32h2" },
15 { text: "ESP32-P4", value: "esp32p4" },
/hal_espressif-latest/components/bt/host/bluedroid/external/sbc/decoder/include/
Doi_bitstream.h54 OI_UINT16 value,
80 #define OI_BITSTREAM_READUINT(result, bits, ptr, value, bitPtr) \ argument
86 result = (value) << (bitPtr); \
91 value = ((value) << 8) | *ptr++; \
98 #define OI_BITSTREAM_WRITEUINT(ptr, value, bitPtr, datum, bits) \ argument
101 value |= datum << bitPtr;\
105 *ptr++ = (OI_UINT8)(value >> 24);\
106 value <<= 8;\
110 #define OI_BITSTREAM_WRITEFLUSH(ptr, value, bitPtr) \ argument
114 *ptr++ = (OI_UINT8)(value >> 24);\
[all …]
/hal_espressif-latest/components/hal/esp32h2/include/hal/
Ddedic_gpio_cpu_ll.h27 static inline void dedic_gpio_cpu_ll_write_all(uint32_t value) in dedic_gpio_cpu_ll_write_all() argument
29 RV_WRITE_CSR(CSR_GPIO_OUT_USER, value); in dedic_gpio_cpu_ll_write_all()
35 uint32_t value = RV_READ_CSR(CSR_GPIO_IN_USER); in dedic_gpio_cpu_ll_read_in() local
36 return value; in dedic_gpio_cpu_ll_read_in()
42 uint32_t value = RV_READ_CSR(CSR_GPIO_OUT_USER); in dedic_gpio_cpu_ll_read_out() local
43 return value; in dedic_gpio_cpu_ll_read_out()
47 static inline void dedic_gpio_cpu_ll_write_mask(uint32_t mask, uint32_t value) in dedic_gpio_cpu_ll_write_mask() argument
49 RV_SET_CSR(CSR_GPIO_OUT_USER, mask & value); in dedic_gpio_cpu_ll_write_mask()
50 RV_CLEAR_CSR(CSR_GPIO_OUT_USER, mask & ~(value)); in dedic_gpio_cpu_ll_write_mask()
Dpcnt_ll.h96 int16_t value = cnt_reg.pulse_cnt; in pcnt_ll_get_count() local
97 return value; in pcnt_ll_get_count()
249 static inline void pcnt_ll_set_high_limit_value(pcnt_dev_t *hw, uint32_t unit, int value) in pcnt_ll_set_high_limit_value() argument
252 conf2_reg.cnt_h_lim = value; in pcnt_ll_set_high_limit_value()
263 static inline void pcnt_ll_set_low_limit_value(pcnt_dev_t *hw, uint32_t unit, int value) in pcnt_ll_set_low_limit_value() argument
266 conf2_reg.cnt_l_lim = value; in pcnt_ll_set_low_limit_value()
278 static inline void pcnt_ll_set_thres_value(pcnt_dev_t *hw, uint32_t unit, uint32_t thres, int value) in pcnt_ll_set_thres_value() argument
282 conf1_reg.cnt_thres0 = value; in pcnt_ll_set_thres_value()
284 conf1_reg.cnt_thres1 = value; in pcnt_ll_set_thres_value()
299 int16_t value = conf2_reg.cnt_h_lim ; in pcnt_ll_get_high_limit_value() local
[all …]
/hal_espressif-latest/components/hal/esp32c6/include/hal/
Ddedic_gpio_cpu_ll.h27 static inline void dedic_gpio_cpu_ll_write_all(uint32_t value) in dedic_gpio_cpu_ll_write_all() argument
29 RV_WRITE_CSR(CSR_GPIO_OUT_USER, value); in dedic_gpio_cpu_ll_write_all()
35 uint32_t value = RV_READ_CSR(CSR_GPIO_IN_USER); in dedic_gpio_cpu_ll_read_in() local
36 return value; in dedic_gpio_cpu_ll_read_in()
42 uint32_t value = RV_READ_CSR(CSR_GPIO_OUT_USER); in dedic_gpio_cpu_ll_read_out() local
43 return value; in dedic_gpio_cpu_ll_read_out()
47 static inline void dedic_gpio_cpu_ll_write_mask(uint32_t mask, uint32_t value) in dedic_gpio_cpu_ll_write_mask() argument
49 RV_SET_CSR(CSR_GPIO_OUT_USER, mask & value); in dedic_gpio_cpu_ll_write_mask()
50 RV_CLEAR_CSR(CSR_GPIO_OUT_USER, mask & ~(value)); in dedic_gpio_cpu_ll_write_mask()
Dpcnt_ll.h96 int16_t value = cnt_reg.pulse_cnt; in pcnt_ll_get_count() local
97 return value; in pcnt_ll_get_count()
249 static inline void pcnt_ll_set_high_limit_value(pcnt_dev_t *hw, uint32_t unit, int value) in pcnt_ll_set_high_limit_value() argument
252 conf2_reg.cnt_h_lim = value; in pcnt_ll_set_high_limit_value()
263 static inline void pcnt_ll_set_low_limit_value(pcnt_dev_t *hw, uint32_t unit, int value) in pcnt_ll_set_low_limit_value() argument
266 conf2_reg.cnt_l_lim = value; in pcnt_ll_set_low_limit_value()
278 static inline void pcnt_ll_set_thres_value(pcnt_dev_t *hw, uint32_t unit, uint32_t thres, int value) in pcnt_ll_set_thres_value() argument
282 conf1_reg.cnt_thres0 = value; in pcnt_ll_set_thres_value()
284 conf1_reg.cnt_thres1 = value; in pcnt_ll_set_thres_value()
299 int16_t value = conf2_reg.cnt_h_lim ; in pcnt_ll_get_high_limit_value() local
[all …]
/hal_espressif-latest/components/hal/esp32c3/include/hal/
Ddedic_gpio_cpu_ll.h27 static inline void dedic_gpio_cpu_ll_write_all(uint32_t value) in dedic_gpio_cpu_ll_write_all() argument
29 RV_WRITE_CSR(CSR_GPIO_OUT_USER, value); in dedic_gpio_cpu_ll_write_all()
35 uint32_t value = RV_READ_CSR(CSR_GPIO_IN_USER); in dedic_gpio_cpu_ll_read_in() local
36 return value; in dedic_gpio_cpu_ll_read_in()
42 uint32_t value = RV_READ_CSR(CSR_GPIO_OUT_USER); in dedic_gpio_cpu_ll_read_out() local
43 return value; in dedic_gpio_cpu_ll_read_out()
47 static inline void dedic_gpio_cpu_ll_write_mask(uint32_t mask, uint32_t value) in dedic_gpio_cpu_ll_write_mask() argument
49 RV_SET_CSR(CSR_GPIO_OUT_USER, mask & value); in dedic_gpio_cpu_ll_write_mask()
50 RV_CLEAR_CSR(CSR_GPIO_OUT_USER, mask & ~(value)); in dedic_gpio_cpu_ll_write_mask()
/hal_espressif-latest/components/hal/esp32c2/include/hal/
Ddedic_gpio_cpu_ll.h28 static inline void dedic_gpio_cpu_ll_write_all(uint32_t value) in dedic_gpio_cpu_ll_write_all() argument
30 RV_WRITE_CSR(CSR_GPIO_OUT_USER, value); in dedic_gpio_cpu_ll_write_all()
36 uint32_t value = RV_READ_CSR(CSR_GPIO_IN_USER); in dedic_gpio_cpu_ll_read_in() local
37 return value; in dedic_gpio_cpu_ll_read_in()
43 uint32_t value = RV_READ_CSR(CSR_GPIO_OUT_USER); in dedic_gpio_cpu_ll_read_out() local
44 return value; in dedic_gpio_cpu_ll_read_out()
48 static inline void dedic_gpio_cpu_ll_write_mask(uint32_t mask, uint32_t value) in dedic_gpio_cpu_ll_write_mask() argument
50 RV_SET_CSR(CSR_GPIO_OUT_USER, mask & value); in dedic_gpio_cpu_ll_write_mask()
51 RV_CLEAR_CSR(CSR_GPIO_OUT_USER, mask & ~(value)); in dedic_gpio_cpu_ll_write_mask()
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/client/
Dlighting_client.c769 static int light_get_state(bt_mesh_client_common_param_t *common, void *value) in light_get_state() argument
775 if (value) { in light_get_state()
779 get = (struct bt_mesh_light_lc_property_get *)value; in light_get_state()
793 void *value, uint16_t value_len, bool need_ack) in light_set_state() argument
810 set = (struct bt_mesh_light_lightness_set *)value; in light_set_state()
822 set = (struct bt_mesh_light_lightness_linear_set *)value; in light_set_state()
834 set = (struct bt_mesh_light_lightness_default_set *)value; in light_set_state()
841 set = (struct bt_mesh_light_lightness_range_set *)value; in light_set_state()
849 set = (struct bt_mesh_light_ctl_set *)value; in light_set_state()
863 set = (struct bt_mesh_light_ctl_temperature_set *)value; in light_set_state()
[all …]
Dgeneric_client.c330 uint32_t value = 0; in generic_status() local
331 value = net_buf_simple_pull_le32(buf); in generic_status()
332 status->battery_level = (uint8_t)value; in generic_status()
333 status->time_to_discharge = (value >> 8); in generic_status()
334 value = net_buf_simple_pull_le32(buf); in generic_status()
335 status->time_to_charge = (value & 0xffffff); in generic_status()
336 status->flags = (uint8_t)(value >> 24); in generic_status()
686 static int gen_get_state(bt_mesh_client_common_param_t *common, void *value) in gen_get_state() argument
692 if (value) { in gen_get_state()
696 get = (struct bt_mesh_gen_user_property_get *)value; in gen_get_state()
[all …]
Dsensor_client.c353 void *value, uint16_t value_len, bool need_ack) in sensor_act_state() argument
369 act = (struct bt_mesh_sensor_descriptor_get *)value; in sensor_act_state()
377 act = (struct bt_mesh_sensor_cadence_get *)value; in sensor_act_state()
384 act = (struct bt_mesh_sensor_cadence_set *)value; in sensor_act_state()
396 act = (struct bt_mesh_sensor_settings_get *)value; in sensor_act_state()
402 act = (struct bt_mesh_sensor_setting_get *)value; in sensor_act_state()
410 act = (struct bt_mesh_sensor_setting_set *)value; in sensor_act_state()
418 act = (struct bt_mesh_sensor_get *)value; in sensor_act_state()
426 act = (struct bt_mesh_sensor_column_get *)value; in sensor_act_state()
433 act = (struct bt_mesh_sensor_series_get *)value; in sensor_act_state()
[all …]
Dtime_scene_client.c369 static int time_scene_get_state(bt_mesh_client_common_param_t *common, void *value) in time_scene_get_state() argument
375 if (value) { in time_scene_get_state()
379 get = (struct bt_mesh_scheduler_act_get *)value; in time_scene_get_state()
393 void *value, uint16_t value_len, bool need_ack) in time_scene_set_state() argument
409 set = (struct bt_mesh_time_set *)value; in time_scene_set_state()
419 set = (struct bt_mesh_time_zone_set *)value; in time_scene_set_state()
426 set = (struct bt_mesh_tai_utc_delta_set *)value; in time_scene_set_state()
433 set = (struct bt_mesh_time_role_set *)value; in time_scene_set_state()
440 set = (struct bt_mesh_scene_store *)value; in time_scene_set_state()
447 set = (struct bt_mesh_scene_recall *)value; in time_scene_set_state()
[all …]
/hal_espressif-latest/components/bt/host/bluedroid/external/sbc/decoder/srce/
Dbitstream-decode.c46 bs->value = ((OI_INT32)buffer[0] << 16) | ((OI_INT32)buffer[1] << 8) | (buffer[2]); in OI_BITSTREAM_ReadInit()
55 OI_BITSTREAM_READUINT(result, bits, bs->ptr.r, bs->value, bs->bitPtr); in OI_BITSTREAM_ReadUINT()
68 result = bs->value << 8; in OI_BITSTREAM_ReadUINT4Aligned()
71 result = bs->value << 12; in OI_BITSTREAM_ReadUINT4Aligned()
72 bs->value = (bs->value << 8) | *bs->ptr.r++; in OI_BITSTREAM_ReadUINT4Aligned()
85 result = bs->value >> 16; in OI_BITSTREAM_ReadUINT8Aligned()
86 bs->value = (bs->value << 8) | *bs->ptr.r++; in OI_BITSTREAM_ReadUINT8Aligned()
/hal_espressif-latest/components/esp_common/include/
Desp_compiler.h22 #define ESP_COMPILER_DESIGNATED_INIT_AGGREGATE_TYPE_STR(member, value) .member = value, argument
25 #define ESP_COMPILER_DESIGNATED_INIT_AGGREGATE_TYPE_STR(member, value) { .member = value }, argument
28 #define ESP_COMPILER_DESIGNATED_INIT_AGGREGATE_TYPE_STR(member, value) .member = value, argument
/hal_espressif-latest/components/esp_phy/src/
Dphy_callback.c21 void esp_phy_test_start_stop(uint8_t value) in esp_phy_test_start_stop() argument
23 g_rf_cmdstop = value; in esp_phy_test_start_stop()
33 uint8_t value = esp_phy_cmdstop_callback(); in esp_phy_getstopcmd() local
34 if (value == 0) { in esp_phy_getstopcmd()
36 } else if (value == 1) { in esp_phy_getstopcmd()
38 } else if (value == 2) { in esp_phy_getstopcmd()
/hal_espressif-latest/components/bt/host/bluedroid/btc/core/
Dbtc_config.c122 bool btc_config_get_int(const char *section, const char *key, int *value) in btc_config_get_int() argument
127 assert(value != NULL); in btc_config_get_int()
131 *value = config_get_int(config, section, key, *value); in btc_config_get_int()
137 bool btc_config_set_int(const char *section, const char *key, int value) in btc_config_set_int() argument
143 config_set_int(config, section, key, value); in btc_config_set_int()
148 bool btc_config_get_str(const char *section, const char *key, char *value, int *size_bytes) in btc_config_get_str() argument
153 assert(value != NULL); in btc_config_get_str()
162 strlcpy(value, stored_value, *size_bytes); in btc_config_get_str()
163 *size_bytes = strlen(value) + 1; in btc_config_get_str()
168 bool btc_config_set_str(const char *section, const char *key, const char *value) in btc_config_set_str() argument
[all …]
/hal_espressif-latest/components/bt/esp_ble_mesh/btc/
Dbtc_ble_mesh_sensor_model.c640 if (p_src_data->value.state_change.sensor_cadence_set.trigger_delta_down) { in btc_ble_mesh_sensor_server_copy_req_data()
641 length = p_src_data->value.state_change.sensor_cadence_set.trigger_delta_down->len; in btc_ble_mesh_sensor_server_copy_req_data()
642 … p_dest_data->value.state_change.sensor_cadence_set.trigger_delta_down = bt_mesh_alloc_buf(length); in btc_ble_mesh_sensor_server_copy_req_data()
643 if (p_dest_data->value.state_change.sensor_cadence_set.trigger_delta_down == NULL) { in btc_ble_mesh_sensor_server_copy_req_data()
647 … net_buf_simple_add_mem(p_dest_data->value.state_change.sensor_cadence_set.trigger_delta_down, in btc_ble_mesh_sensor_server_copy_req_data()
648 … p_src_data->value.state_change.sensor_cadence_set.trigger_delta_down->data, in btc_ble_mesh_sensor_server_copy_req_data()
649 … p_src_data->value.state_change.sensor_cadence_set.trigger_delta_down->len); in btc_ble_mesh_sensor_server_copy_req_data()
651 if (p_src_data->value.state_change.sensor_cadence_set.trigger_delta_up) { in btc_ble_mesh_sensor_server_copy_req_data()
652 length = p_src_data->value.state_change.sensor_cadence_set.trigger_delta_up->len; in btc_ble_mesh_sensor_server_copy_req_data()
653 … p_dest_data->value.state_change.sensor_cadence_set.trigger_delta_up = bt_mesh_alloc_buf(length); in btc_ble_mesh_sensor_server_copy_req_data()
[all …]
Dbtc_ble_mesh_generic_model.c559 if (p_src_data->value.state_change.user_property_set.value) { in btc_ble_mesh_generic_server_copy_req_data()
560 length = p_src_data->value.state_change.user_property_set.value->len; in btc_ble_mesh_generic_server_copy_req_data()
561 p_dest_data->value.state_change.user_property_set.value = bt_mesh_alloc_buf(length); in btc_ble_mesh_generic_server_copy_req_data()
562 if (p_dest_data->value.state_change.user_property_set.value == NULL) { in btc_ble_mesh_generic_server_copy_req_data()
566 net_buf_simple_add_mem(p_dest_data->value.state_change.user_property_set.value, in btc_ble_mesh_generic_server_copy_req_data()
567 p_src_data->value.state_change.user_property_set.value->data, in btc_ble_mesh_generic_server_copy_req_data()
568 p_src_data->value.state_change.user_property_set.value->len); in btc_ble_mesh_generic_server_copy_req_data()
573 if (p_src_data->value.state_change.admin_property_set.value) { in btc_ble_mesh_generic_server_copy_req_data()
574 length = p_src_data->value.state_change.admin_property_set.value->len; in btc_ble_mesh_generic_server_copy_req_data()
575 … p_dest_data->value.state_change.admin_property_set.value = bt_mesh_alloc_buf(length); in btc_ble_mesh_generic_server_copy_req_data()
[all …]
/hal_espressif-latest/components/newlib/
Dstdatomic.c137 #define FETCH_ADD(n, type) type __atomic_fetch_add_ ## n (volatile void* ptr, type value, int memor…
141 *(volatile type*)ptr = *(volatile type*)ptr + value; \
146 #define ADD_FETCH(n, type) type __atomic_add_fetch_ ## n (volatile void* ptr, type value, int memor…
149 type ret = *(volatile type*)ptr + value; \
155 #define FETCH_SUB(n, type) type __atomic_fetch_sub_ ## n (volatile void* ptr, type value, int memor…
159 *(volatile type*)ptr = *(volatile type*)ptr - value; \
164 #define SUB_FETCH(n, type) type __atomic_sub_fetch_ ## n (volatile void* ptr, type value, int memor…
167 type ret = *(volatile type*)ptr - value; \
173 #define FETCH_AND(n, type) type __atomic_fetch_and_ ## n (volatile void* ptr, type value, int memor…
177 *(volatile type*)ptr = *(volatile type*)ptr & value; \
[all …]
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/server/
Dstate_binding.c99 bt_mesh_server_state_value_t *value) in bt_mesh_update_binding_state() argument
102 value == NULL || type > BIND_STATE_MAX) { in bt_mesh_update_binding_state()
117 srv->state.onoff = value->gen_onoff.onoff; in bt_mesh_update_binding_state()
129 srv->state.level = value->gen_level.level; in bt_mesh_update_binding_state()
145 srv->state->onpowerup = value->gen_onpowerup.onpowerup; in bt_mesh_update_binding_state()
162 srv->state->power_actual = value->gen_power_actual.power; in bt_mesh_update_binding_state()
190 srv->state->lightness_actual = value->light_lightness_actual.lightness; in bt_mesh_update_binding_state()
216 srv->state->lightness_linear = value->light_lightness_linear.lightness; in bt_mesh_update_binding_state()
233 srv->state->lightness = value->light_ctl_lightness.lightness; in bt_mesh_update_binding_state()
250 srv->state->temperature = value->light_ctl_temp_delta_uv.temperature; in bt_mesh_update_binding_state()
[all …]
/hal_espressif-latest/components/hal/esp32/include/hal/
Dpcnt_ll.h97 int16_t value = cnt_reg.cnt_val; in pcnt_ll_get_count() local
98 return value; in pcnt_ll_get_count()
250 static inline void pcnt_ll_set_high_limit_value(pcnt_dev_t *hw, uint32_t unit, int value) in pcnt_ll_set_high_limit_value() argument
253 conf2_reg.cnt_h_lim = value; in pcnt_ll_set_high_limit_value()
264 static inline void pcnt_ll_set_low_limit_value(pcnt_dev_t *hw, uint32_t unit, int value) in pcnt_ll_set_low_limit_value() argument
267 conf2_reg.cnt_l_lim = value; in pcnt_ll_set_low_limit_value()
279 static inline void pcnt_ll_set_thres_value(pcnt_dev_t *hw, uint32_t unit, uint32_t thres, int value) in pcnt_ll_set_thres_value() argument
283 conf1_reg.cnt_thres0 = value; in pcnt_ll_set_thres_value()
285 conf1_reg.cnt_thres1 = value; in pcnt_ll_set_thres_value()
300 int16_t value = conf2_reg.cnt_h_lim; in pcnt_ll_get_high_limit_value() local
[all …]

12345678910>>...16