Home
last modified time | relevance | path

Searched full:attention (Results 1 – 25 of 66) sorted by relevance

123

/Zephyr-Core-3.5.0/doc/connectivity/bluetooth/api/mesh/
Dhealth_srv.rst6 The Health Server model provides attention callbacks and node diagnostics for
32 Attention state
35 The attention state is used to make the device call attention to itself
37 The attention state may be used during provisioning to let the user know which
40 The attention state is always assigned a timeout in the range of one to 255
42 application to run their attention calling behavior:
44 attention period, :c:member:`bt_mesh_health_srv_cb.attn_off` is called at
47 The remaining time for the attention period may be queried through
Dhealth_cli.rst7 diagnostics and control the node's attention state.
/Zephyr-Core-3.5.0/include/zephyr/bluetooth/mesh/
Dhealth_cli.h52 /** @brief Optional callback for Health Attention Status messages.
54 * Handles received Health Attention Status messages from a Health
55 * server. The @c attention param represents the current attention value.
59 * @param attention Current attention value.
62 uint8_t attention);
286 /** @brief Get the current attention timer value.
288 * This method can be used asynchronously by setting @p attention
298 * @param attention Attention timer response buffer, measured in seconds.
303 uint8_t *attention);
305 /** @brief Set the attention timer.
[all …]
Dhealth_srv.h114 /** @brief Start calling attention to the device.
116 * The attention state is used to map an element address to a
118 * start some physical procedure meant to call attention to itself,
120 * Health server instances on the device, the attention state should
123 * The attention calling behavior should continue until the @c attn_off
126 * @param model Health Server model to start the attention state of.
130 /** @brief Stop the attention state.
132 * Any physical activity started to call attention to the device should
157 /** Attention Timer state */
/Zephyr-Core-3.5.0/subsys/bluetooth/mesh/shell/
Dhealth.c257 uint8_t attention; in cmd_attention_get() local
260 err = bt_mesh_health_cli_attention_get(cli, ctx.addr ? &ctx : NULL, &attention); in cmd_attention_get()
262 shell_error(sh, "Failed to send Health Attention Get (err %d)", err); in cmd_attention_get()
264 shell_print(sh, "Health Attention Timer: %u", attention); in cmd_attention_get()
279 uint8_t attention; in attention_set() local
282 attention = shell_strtoul(argv[1], 0, &err); in attention_set()
291 err = bt_mesh_health_cli_attention_set(cli, ctx.addr ? &ctx : NULL, attention, in attention_set()
294 shell_error(sh, "Failed to send Health Attention Set (err %d)", err); in attention_set()
296 shell_print(sh, "Health Attention Timer: %u", updated_attention); in attention_set()
302 err = bt_mesh_health_cli_attention_set_unack(cli, ctx.addr ? &ctx : NULL, attention); in attention_set()
[all …]
/Zephyr-Core-3.5.0/subsys/bluetooth/mesh/
Dhealth_cli.c151 uint8_t *attention; member
160 uint8_t attention; in health_attention_status() local
165 attention = net_buf_simple_pull_u8(buf); in health_attention_status()
169 if (param->attention) { in health_attention_status()
170 *param->attention = attention; in health_attention_status()
177 cli->attention_status(cli, ctx->addr, attention); in health_attention_status()
191 uint8_t *attention) in bt_mesh_health_cli_attention_get() argument
195 .attention = attention, in bt_mesh_health_cli_attention_get()
207 return bt_mesh_msg_ackd_send(cli->model, ctx, &msg, attention ? &rsp : NULL); in bt_mesh_health_cli_attention_get()
211 uint8_t attention, uint8_t *updated_attention) in bt_mesh_health_cli_attention_set() argument
[all …]
/Zephyr-Core-3.5.0/dts/bindings/usb/
Dusb-audio-feature-volume.yaml17 attention: this attribute is a signed value.
25 attention: this attribute is a signed value.
33 attention: this attribute can only take positive values.
/Zephyr-Core-3.5.0/samples/bluetooth/mesh_demo/src/
Dboard.h22 void board_attention(bool attention);
42 void board_attention(bool attention) in board_attention() argument
Dmicrobit.c194 void board_attention(bool attention) in board_attention() argument
220 if (attention) { in board_attention()
/Zephyr-Core-3.5.0/doc/_static/css/
Ddark.css72 --admonition-attention-background-color: #444033;
73 --admonition-attention-color: #ffeeaf;
74 --admonition-attention-title-background-color: #665022;
75 --admonition-attention-title-color: #ffeeaf;
Dlight.css70 --admonition-attention-background-color: #ffedcc;
71 --admonition-attention-color: #404040;
72 --admonition-attention-title-background-color: #f0b37e;
73 --admonition-attention-title-color: #fff;
Dcustom.css123 background-color: var(--admonition-attention-background-color) !important;
124 border-color: var(--admonition-attention-title-background-color) !important;
125 color: var(--admonition-attention-color) !important;
508 .rst-content .admonition.attention,
511 background-color: var(--admonition-attention-background-color);
512 color: var(--admonition-attention-color);
516 .rst-content .admonition.attention .admonition-title,
519 background-color: var(--admonition-attention-title-background-color);
520 color: var(--admonition-attention-title-color);
/Zephyr-Core-3.5.0/dts/bindings/bluetooth/
Dinfineon,cyw43xxx-bt-hci.yaml56 CYW43xx indicating that the host requires attention.
62 indicating that the CYW43xx requires attention.
/Zephyr-Core-3.5.0/samples/bluetooth/direction_finding_peripheral/boards/
Dnrf5340dk_nrf5340_cpuapp.overlay10 * Note: Pay attention to assign the same GPIO pins as those provided in
/Zephyr-Core-3.5.0/samples/bluetooth/direction_finding_central/boards/
Dnrf5340dk_nrf5340_cpuapp.overlay10 * Note: Pay attention to assign the same GPIO pins as those provided in
/Zephyr-Core-3.5.0/samples/bluetooth/direction_finding_connectionless_tx/boards/
Dnrf5340dk_nrf5340_cpuapp.overlay10 * Note: Pay attention to assign the same GPIO pins as those provided in
/Zephyr-Core-3.5.0/samples/bluetooth/direction_finding_connectionless_rx/boards/
Dnrf5340dk_nrf5340_cpuapp.overlay10 * Note: Pay attention to assign the same GPIO pins as those provided in
/Zephyr-Core-3.5.0/subsys/bluetooth/controller/ll_sw/
Dull_df_types.h15 * @note Pay attention that both types AoD and AoA
/Zephyr-Core-3.5.0/doc/hardware/peripherals/
Dsmbus.rst33 request attention from the Controller. The Controller needs to read one byte
/Zephyr-Core-3.5.0/subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/radio/
Dradio_df.h43 /* Set antenna switch pattern. Pay attention, patterns are added to
/Zephyr-Core-3.5.0/
DCODE_OF_CONDUCT.md25 * The use of sexualized language or imagery and unwelcome sexual attention or
/Zephyr-Core-3.5.0/samples/boards/nrf/dynamic_pinctrl/
DREADME.rst29 associated pins has not been initialized yet. Therefore, pay attention to the
/Zephyr-Core-3.5.0/include/zephyr/bluetooth/
Dead.h54 * @attention The function must be called each time the RPA is updated or the
/Zephyr-Core-3.5.0/boards/arm/lora_e5_dev_board/
Dlora_e5_dev_board.dts137 /* Attention!: the spi-sck pin is in conflict with the boot_button on pb13 */
/Zephyr-Core-3.5.0/boards/xtensa/esp32s2_franzininho/doc/
Dindex.rst61 It is build as a subproject at each application build. No further attention

123