/Zephyr-latest/dts/bindings/display/ |
D | ultrachip,uc81xx-common.yaml | 26 Child nodes describe refresh profiles. Each refresh profile 27 specifies a set of voltages used to drive the refresh 28 cycle. Refresh nodes are optional and are used to override 31 The partial refresh profile is used when performing a partial 32 refresh (writes while blanking is off). Since the controller 33 always supports partial updates, the driver uses the full refresh 41 - 'full' - Normal / full refresh. 42 - 'partial' - Partial refresh, defaults to the values in the 54 be provided to enable border refresh control.
|
D | solomon,ssd16xx-common.yaml | 44 Child nodes describe refresh profiles. Each refresh profile 45 specifies a set of voltages used to drive the refresh 46 cycle. Refresh profiles are optional and are used to override 49 Partial refresh will be disabled unless a partial refresh profile 55 - 'full' - Normal / full refresh. 56 - 'partial' - Partial refresh.
|
/Zephyr-latest/tests/bsim/bluetooth/mesh/tests_scripts/provision/ |
D | pb_remote_client_server_same_dev.sh | 12 # device key refresh procedure the second device (prov_device_pb_remote_server_same_dev). 14 # composition refresh procedure the second device (prov_device_pb_remote_server_same_dev). 16 # address refresh procedure the second device (prov_device_pb_remote_server_same_dev). 18 # device key refresh procedure on it self with local RPR client and server. 20 # composition refresh procedure on it self with local RPR client and server. 22 # address refresh procedure on it self with local RPR client and server.
|
D | pb_remote_nppi_robustness.sh | 12 # 3. Execute device key refresh procedure 3 times for the third device. 13 # 4. Execute composition refresh procedure 3 times for the third device. 14 # 5. Execute address refresh procedure 3 times for the third device.
|
D | pb_remote_pst_ncrp.sh | 7 # Test Node Composition Refresh procedure with persistence storage: 18 # 2. Verify Node Composition Refresh procedure. 22 # - run Node Composition Refresh procedure on the 3rd device 29 # - run Node Composition Refresh procedure again and expect it to fail
|
/Zephyr-latest/dts/bindings/memory-controllers/ |
D | renesas,ra-sdram.yaml | 10 auto-refresh-interval = <10>; 11 auto-refresh-count = <8>; 61 auto-refresh-interval: 64 description: Number of auto-refresh-interval. 66 auto-refresh-count: 69 description: Number of auto-refresh-count. 128 - TRFC: Auto-Refresh Request Interval Setting. 129 - TREFW: Auto-Refresh Cycle/Self-Refresh Clearing Cycle Count Setting.
|
D | st,stm32-fmc-sdram.yaml | 26 num-auto-refresh = <8>; 28 refresh-rate = <603>; 94 num-auto-refresh: 97 description: Number of auto-refresh commands issued. 107 refresh-rate: 111 A 13-bit field defines the refresh rate of the SDRAM device. It is 149 Refresh command in number of memory clock cycles. 150 - TXSR: Delay from releasing the Self-refresh command to issuing the 154 - TRAS: Minimum Self-refresh period in number of memory clock cycles. 155 - TRC: Delay between the Refresh command and the Activate command, as [all …]
|
/Zephyr-latest/drivers/watchdog/ |
D | Kconfig.nxp_fs26 | 34 int "Watchdog refresh counter limit" 37 Sets the maximum value of the watchdog refresh counter. Each time the 39 time this counter reaches its maximum value and if the next refresh is 41 there is a bad watchdog refresh, this counter is reset to 0.
|
/Zephyr-latest/doc/connectivity/bluetooth/api/mesh/ |
D | rpr_cli.rst | 107 * Device Key Refresh procedure: Used to change the device key of the Target node without a need to 109 * Node Address Refresh procedure: Used to change the node’s device key and unicast address. 110 * Node Composition Refresh procedure: Used to change the device key of the node, and to add or 129 The above example shows pseudo code for triggering a Node Address Refresh procedure on the Target 134 Refresh procedure. If the two addresses were the same, and the ``composition_changed`` flag was set 135 to false, this code would trigger a Device Key Refresh procedure.
|
/Zephyr-latest/include/zephyr/bluetooth/mesh/ |
D | cfg.h | 39 /* Key Refresh Phase */ 333 * Starts the Key Refresh procedure for this Subnet by adding a second set of 335 * receiving messages using both) until the Subnet enters Key Refresh phase 2. 375 /** @brief Set the Subnet's Key Refresh phase. 377 * The Key Refresh procedure is started by updating the Subnet keys through 378 * @ref bt_mesh_subnet_update. This puts the Subnet in Key Refresh Phase 1. 379 * Once all nodes have received the new Subnet key, Key Refresh Phase 2 can be 381 * key. Finally, to revoke the old key, set the Key Refresh Phase to 3. This 386 * @param phase Pointer to the new Key Refresh phase. Will return the actual 387 * Key Refresh phase after updating. [all …]
|
/Zephyr-latest/subsys/bluetooth/mesh/ |
D | subnet.h | 56 uint8_t kr_phase; /* Key Refresh Phase */ 153 * @param kr_phase Key refresh phase the Subnet should be in. 210 /** @brief Process a Key Refresh event from a beacon. 212 * @param sub Subnet the Key Refresh was received on. 213 * @param kr_flag Key Refresh flag. 214 * @param new_key Whether the Key Refresh event was received on the new key 217 * @returns Whether the Key Refresh event caused a change.
|
D | rpr_srv.c | 88 } refresh; member 97 return srv.refresh.procedure; in bt_mesh_node_refresh_get() 365 srv.refresh.cb->link_closed(&pb_remote_srv, srv.refresh.cb_data, in link_close() 818 uint8_t refresh; in handle_link_open() local 841 refresh = net_buf_simple_pull_u8(buf); in handle_link_open() 843 srv.refresh.procedure != refresh) { in handle_link_open() 871 refresh = net_buf_simple_pull_u8(buf); in handle_link_open() 872 if (refresh > BT_MESH_RPR_NODE_REFRESH_COMPOSITION) { in handle_link_open() 873 LOG_ERR("Invalid refresh: %u", refresh); in handle_link_open() 877 if (refresh == BT_MESH_RPR_NODE_REFRESH_COMPOSITION && in handle_link_open() [all …]
|
/Zephyr-latest/dts/bindings/regulator/ |
D | nordic,npm2100-regulator.yaml | 71 Interval between DPS refresh cycles in microseconds. 81 DPS coil pulse limit per refresh cycle.
|
/Zephyr-latest/samples/boards/bbc/microbit/pong/src/ |
D | main.c | 31 #define GAME_REFRESH K_MSEC(100) /* Animation refresh rate of the game */ 92 static struct k_work_delayable refresh; variable 269 k_work_reschedule(&refresh, K_NO_WAIT); in check_start() 304 k_work_reschedule(&refresh, K_MSEC(RESTART_THRESHOLD)); in game_ended() 387 k_work_reschedule(&refresh, GAME_REFRESH); in game_refresh() 400 k_work_reschedule(&refresh, K_NO_WAIT); in pong_ball_received() 422 int busy = k_work_cancel_delayable(&refresh); in button_pressed() 489 k_work_reschedule(&refresh, K_SECONDS(1)); in pong_remote_disconnected() 526 k_work_init_delayable(&refresh, game_refresh); in main()
|
/Zephyr-latest/tests/bsim/bluetooth/mesh/tests_scripts/priv_beacon/ |
D | priv_beacon_kr.sh | 7 # Test Private Beacon advertising during Key Refresh procedure
|
D | priv_beacon_kr_long_interval.sh | 7 # Test Private Beacon advertising during Key Refresh procedure, with long Random Interval set.
|
/Zephyr-latest/modules/lvgl/ |
D | Kconfig.memory | 70 bool "Force full refresh mode" 72 Force full refresh of display on update. When combined with
|
/Zephyr-latest/boards/shields/rk043fn02h_ct/ |
D | Kconfig.defconfig | 22 # Force full refresh. This prevents memory copy associated with partial
|
/Zephyr-latest/boards/shields/rk043fn66hs_ctg/ |
D | Kconfig.defconfig | 22 # Force full refresh. This prevents memory copy associated with partial
|
/Zephyr-latest/boards/shields/rk055hdmipi4m/ |
D | Kconfig.defconfig | 31 # Force full refresh. This prevents memory copy associated with partial
|
/Zephyr-latest/tests/bsim/bluetooth/mesh/src/ |
D | test_provision.c | 1184 /** @brief Verify robustness of NPPI procedures on a RPR Client by running Device Key Refresh, 1185 * Node Composition Refresh and Node Address Refresh procedures. 1222 LOG_INF("Testing DevKey refresh..."); in test_provisioner_pb_remote_client_nppi_robustness() 1228 LOG_INF("Testing Composition Data refresh..."); in test_provisioner_pb_remote_client_nppi_robustness() 1234 LOG_INF("Testing address refresh..."); in test_provisioner_pb_remote_client_nppi_robustness() 1300 /* The RPR Server won't let to run Node Composition Refresh procedure without first in reprovision_remote_comp_data_server() 1344 /** @brief Verify robustness of NPPI procedures on a RPR Server by running Device Key Refresh, 1345 * Node Composition Refresh and Node Address Refresh procedures multiple times each. 1364 /* Test Device Key Refresh procedure robustness. */ in test_device_pb_remote_server_nppi_robustness() 1366 LOG_INF("Devkey refresh loop #%d, waiting for being reprov ...\n", i); in test_device_pb_remote_server_nppi_robustness() [all …]
|
D | test_beacon.c | 555 /* Test beacons reception with Key Refresh and IV Update on primary subnet. */ 578 /* Send a beacon with Key Refresh flag set to 1, but secured with the old Net Key. The in test_tx_kr_old_key() 579 * beacon shall not change Key Refresh phase, but should still be processed. The beacon in test_tx_kr_old_key() 597 /* Send beacon with Key Refresh flag set to 1, IV Update flag set to 1, but secured with in test_tx_kr_old_key() 598 * the new Net Key. The node shall set Key Refresh phase to 2. The beacon interval shall in test_tx_kr_old_key() 608 /* Send beacon with Key Refresh flag set to 1, IV Update flag set to 0, but secured with in test_tx_kr_old_key() 618 /* Try the same with the new Net Key. Now the node shall change Key Refresh phase to 0. The in test_tx_kr_old_key() 651 /* Test beacons reception with Key Refresh and IV Update on primary subnet. */ 672 /* Old Net Key, attempt to change Key Refresh phase to 2. */ in test_rx_kr_old_key() 676 /* New Net Key, changing Key Refresh phase. */ in test_rx_kr_old_key() [all …]
|
/Zephyr-latest/boards/shields/rk055hdmipi4ma0/ |
D | Kconfig.defconfig | 33 # Force full refresh. This prevents memory copy associated with partial
|
/Zephyr-latest/boards/shields/rtkmipilcdb00000be/ |
D | Kconfig.defconfig | 39 # Force full refresh. This prevents memory copy associated with partial
|
/Zephyr-latest/boards/arduino/portenta_h7/ |
D | arduino_portenta_h7-common.dtsi | 152 * refresh rate is 703 - 20 = 683. 154 refresh-rate = < 683 >; 155 num-auto-refresh = < 8 >;
|