/Zephyr-Core-3.5.0/doc/connectivity/bluetooth/api/mesh/ |
D | health_srv.rst | 6 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
|
D | health_cli.rst | 7 diagnostics and control the node's attention state.
|
/Zephyr-Core-3.5.0/include/zephyr/bluetooth/mesh/ |
D | health_cli.h | 52 /** @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 …]
|
D | health_srv.h | 114 /** @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/ |
D | health.c | 257 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/ |
D | health_cli.c | 151 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/ |
D | usb-audio-feature-volume.yaml | 17 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/ |
D | board.h | 22 void board_attention(bool attention); 42 void board_attention(bool attention) in board_attention() argument
|
D | microbit.c | 194 void board_attention(bool attention) in board_attention() argument 220 if (attention) { in board_attention()
|
/Zephyr-Core-3.5.0/doc/_static/css/ |
D | dark.css | 72 --admonition-attention-background-color: #444033; 73 --admonition-attention-color: #ffeeaf; 74 --admonition-attention-title-background-color: #665022; 75 --admonition-attention-title-color: #ffeeaf;
|
D | light.css | 70 --admonition-attention-background-color: #ffedcc; 71 --admonition-attention-color: #404040; 72 --admonition-attention-title-background-color: #f0b37e; 73 --admonition-attention-title-color: #fff;
|
D | custom.css | 123 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/ |
D | infineon,cyw43xxx-bt-hci.yaml | 56 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/ |
D | nrf5340dk_nrf5340_cpuapp.overlay | 10 * Note: Pay attention to assign the same GPIO pins as those provided in
|
/Zephyr-Core-3.5.0/samples/bluetooth/direction_finding_central/boards/ |
D | nrf5340dk_nrf5340_cpuapp.overlay | 10 * 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/ |
D | nrf5340dk_nrf5340_cpuapp.overlay | 10 * 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/ |
D | nrf5340dk_nrf5340_cpuapp.overlay | 10 * Note: Pay attention to assign the same GPIO pins as those provided in
|
/Zephyr-Core-3.5.0/subsys/bluetooth/controller/ll_sw/ |
D | ull_df_types.h | 15 * @note Pay attention that both types AoD and AoA
|
/Zephyr-Core-3.5.0/doc/hardware/peripherals/ |
D | smbus.rst | 33 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/ |
D | radio_df.h | 43 /* Set antenna switch pattern. Pay attention, patterns are added to
|
/Zephyr-Core-3.5.0/ |
D | CODE_OF_CONDUCT.md | 25 * The use of sexualized language or imagery and unwelcome sexual attention or
|
/Zephyr-Core-3.5.0/samples/boards/nrf/dynamic_pinctrl/ |
D | README.rst | 29 associated pins has not been initialized yet. Therefore, pay attention to the
|
/Zephyr-Core-3.5.0/include/zephyr/bluetooth/ |
D | ead.h | 54 * @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/ |
D | lora_e5_dev_board.dts | 137 /* Attention!: the spi-sck pin is in conflict with the boot_button on pb13 */
|
/Zephyr-Core-3.5.0/boards/xtensa/esp32s2_franzininho/doc/ |
D | index.rst | 61 It is build as a subproject at each application build. No further attention
|