Home
last modified time | relevance | path

Searched refs:backoff (Results 1 – 16 of 16) sorted by relevance

/Zephyr-latest/tests/drivers/clock_control/nrf_onoff_and_bt/src/
Dmain.c103 int backoff; in ZTEST() local
115 backoff = 3 * rand; in ZTEST()
121 k_busy_wait(backoff); in ZTEST()
123 if (backoff > HF_STARTUP_TIME_US) { in ZTEST()
191 int backoff; in ZTEST() local
203 backoff = 3 * rand; in ZTEST()
207 k_busy_wait(backoff); in ZTEST()
209 if (backoff > HF_STARTUP_TIME_US) { in ZTEST()
/Zephyr-latest/subsys/net/l2/ieee802154/
DKconfig.radio31 Use CSMA-CA mechanism (listen-before-talk with exponential backoff)
59 int "CSMA MAC minimum backoff exponent"
63 The minimum value of the backoff exponent (BE) in the CSMA-CA
68 int "CSMA MAC maximum backoff exponent"
72 The maximum value of the backoff exponent (BE) in the CSMA-CA
/Zephyr-latest/subsys/testsuite/ztest/src/
Dztress.c46 static k_timeout_t backoff[CONFIG_ZTRESS_MAX_THREADS]; variable
75 uint32_t new_ticks = ratio * (uint32_t)backoff[i].ticks / 16; in adjust_load()
77 backoff[i].ticks = MAX(4, new_ticks); in adjust_load()
241 k_timer_start(timer, randomize_t(backoff[priority]), K_NO_WAIT); in ztress_timeout()
270 sleep(backoff[priority]); in ztress_thread()
356 backoff[ztress_prio] = timer_data->t; in ztress_execute()
364 backoff[ztress_prio] = thread_data[i].t; in ztress_execute()
416 (uint32_t)init_backoff[i].ticks, (uint32_t)backoff[i].ticks); in ztress_report()
447 return backoff[id].ticks; in ztress_optimized_ticks()
/Zephyr-latest/drivers/ieee802154/
DKconfig.cc13xx_cc26xx39 int "CSMA MAC minimum backoff exponent"
44 The minimum value of the backoff exponent (BE) in the CSMA-CA
48 int "CSMA MAC maximum backoff exponent"
53 The maximum value of the backoff exponent (BE) in the CSMA-CA
/Zephyr-latest/subsys/logging/
Dlog_core.c550 k_timeout_t backoff = K_NO_WAIT; in z_impl_log_process() local
557 msg = z_log_msg_claim(&backoff); in z_impl_log_process()
563 } else if (CONFIG_LOG_PROCESSING_LATENCY_US > 0 && !K_TIMEOUT_EQ(backoff, K_NO_WAIT)) { in z_impl_log_process()
568 k_timer_start(&log_process_thread_timer, backoff, K_NO_WAIT); in z_impl_log_process()
707 union log_msg_generic *z_log_msg_claim_oldest(k_timeout_t *backoff) in z_log_msg_claim_oldest() argument
751 *backoff = K_TICKS(diff); in z_log_msg_claim_oldest()
753 *backoff = K_TICKS((diff * sys_clock_hw_cycles_per_sec()) / in z_log_msg_claim_oldest()
773 union log_msg_generic *z_log_msg_claim(k_timeout_t *backoff) in z_log_msg_claim() argument
781 return z_log_msg_claim_oldest(backoff); in z_log_msg_claim()
/Zephyr-latest/drivers/wifi/nrf_wifi/
DKconfig.nrfwifi283 int "DSSS Transmit power backoff (in dB) for lower edge of 2.4 GHz frequency band"
288 int "HT/VHT Transmit power backoff (in dB) for lower edge of 2.4 GHz frequency band"
293 int "HE Transmit power backoff (in dB) for lower edge of 2.4 GHz frequency band"
298 int "DSSS Transmit power backoff (in dB) for upper edge of 2.4 GHz frequency band"
303 int "HT/VHT Transmit power backoff (in dB) for upper edge of 2.4 GHz frequency band"
308 int "HE Transmit power backoff (in dB) for upper edge of 2.4 GHz frequency band"
313 int "HT/VHT Transmit power backoff (in dB) for lower edge of UNII-1 frequency band"
318 int "HE Transmit power backoff (in dB) for lower edge of UNII-1 frequency band"
323 int "HT/VHT Transmit power backoff (in dB) for upper edge of UNII-1 frequency band"
328 int "HE Transmit power backoff (in dB) for upper edge of UNII-1 frequency band"
[all …]
/Zephyr-latest/include/zephyr/logging/
Dlog_internal.h118 union log_msg_generic *z_log_msg_claim(k_timeout_t *backoff);
/Zephyr-latest/samples/net/cloud/aws_iot_mqtt/
DKconfig76 bool "enable exponential backoff"
80 Enable AWS exponential backoff for reconnecting to AWS MQTT broker.
DREADME.rst20 - Retrying connections using an exponential backoff algorithm
55 - :kconfig:option:`CONFIG_AWS_EXPONENTIAL_BACKOFF`: Enable the exponential backoff algorithm.
/Zephyr-latest/drivers/misc/coresight/
DKconfig53 int "Thread backoff time (ms)"
/Zephyr-latest/subsys/net/l2/openthread/
DKconfig320 bool "Software CSMA backoff logic"
323 Set y to enable software CSMA backoff. The option can be disabled if
/Zephyr-latest/subsys/net/lib/sockets/
DKconfig52 times with exponential backoff until the timeout is reached.
63 which DNS query is re-tried. If there is no reply, the backoff
/Zephyr-latest/subsys/net/lib/coap/
DKconfig86 int "Retransmission backoff factor for ACK timeout described as percentage"
/Zephyr-latest/doc/releases/
Drelease-notes-1.13.rst516 * :github:`8452` - ieee802154: csma-ca: random backoff factor looks wrong
Drelease-notes-3.2.rst878 * Implemented randomized retransmission timeouts and exponential backoff.
2130 …thub:`48471` - net: tcp: Persistent timer for window probing does not implement exponential backoff
Drelease-notes-2.5.rst678 * Added option to enable software CSMA backoff.