Home
last modified time | relevance | path

Searched refs:not_set (Results 1 – 5 of 5) sorted by relevance

/Zephyr-latest/samples/bluetooth/channel_sounding/include/
Dcs_test_params.h44 memset(params.override_config_0.not_set.channel_map, 0, 10); in test_params_get()
47 BT_LE_CS_CHANNEL_BIT_SET_VAL(params.override_config_0.not_set.channel_map, i, 1); in test_params_get()
50 params.override_config_0.not_set.channel_selection_type = BT_CONN_LE_CS_CHSEL_TYPE_3B; in test_params_get()
51 params.override_config_0.not_set.ch3c_shape = BT_CONN_LE_CS_CH3C_SHAPE_HAT; in test_params_get()
52 params.override_config_0.not_set.ch3c_jump = 2; in test_params_get()
/Zephyr-latest/subsys/bluetooth/host/shell/
Dcs.c229 memset(params.override_config_0.not_set.channel_map, 0, in cmd_cs_test_simple()
230 sizeof(params.override_config_0.not_set.channel_map)); in cmd_cs_test_simple()
231 params.override_config_0.not_set.channel_map[1] = 0xFF; in cmd_cs_test_simple()
232 params.override_config_0.not_set.channel_map[7] = 0xFF; in cmd_cs_test_simple()
233 params.override_config_0.not_set.channel_map[8] = 0xFF; in cmd_cs_test_simple()
234 params.override_config_0.not_set.channel_selection_type = BT_CONN_LE_CS_CHSEL_TYPE_3B; in cmd_cs_test_simple()
235 params.override_config_0.not_set.ch3c_shape = BT_CONN_LE_CS_CH3C_SHAPE_HAT; in cmd_cs_test_simple()
236 params.override_config_0.not_set.ch3c_jump = 0x2; in cmd_cs_test_simple()
/Zephyr-latest/subsys/bluetooth/host/
Dcs.c539 net_buf_add_mem(buf, params->override_config_0.not_set.channel_map, in bt_le_cs_start_test()
540 sizeof(params->override_config_0.not_set.channel_map)); in bt_le_cs_start_test()
541 net_buf_add_u8(buf, params->override_config_0.not_set.channel_selection_type); in bt_le_cs_start_test()
542 net_buf_add_u8(buf, params->override_config_0.not_set.ch3c_shape); in bt_le_cs_start_test()
543 net_buf_add_u8(buf, params->override_config_0.not_set.ch3c_jump); in bt_le_cs_start_test()
546 (sizeof(params->override_config_0.not_set.channel_map) + in bt_le_cs_start_test()
547 sizeof(params->override_config_0.not_set.channel_selection_type) + in bt_le_cs_start_test()
548 sizeof(params->override_config_0.not_set.ch3c_shape) + in bt_le_cs_start_test()
549 sizeof(params->override_config_0.not_set.ch3c_jump)); in bt_le_cs_start_test()
/Zephyr-latest/include/zephyr/bluetooth/
Dcs.h400 } not_set; member
/Zephyr-latest/scripts/west_commands/runners/
Dcore.py190 not_set = re.compile(f'^# (?P<option>{self.config_prefix}_[A-Za-z0-9_]+) is not set$')
218 match = not_set.match(line)