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/drivers/wifi/nrf_wifi/
DKconfig.nrfwifi262 int "DSSS Transmit power backoff (in dB) for lower edge of 2.4 GHz frequency band"
267 int "HT/VHT Transmit power backoff (in dB) for lower edge of 2.4 GHz frequency band"
272 int "HE Transmit power backoff (in dB) for lower edge of 2.4 GHz frequency band"
277 int "DSSS Transmit power backoff (in dB) for upper edge of 2.4 GHz frequency band"
282 int "HT/VHT Transmit power backoff (in dB) for upper edge of 2.4 GHz frequency band"
287 int "HE Transmit power backoff (in dB) for upper edge of 2.4 GHz frequency band"
292 int "HT/VHT Transmit power backoff (in dB) for lower edge of UNII-1 frequency band"
297 int "HE Transmit power backoff (in dB) for lower edge of UNII-1 frequency band"
302 int "HT/VHT Transmit power backoff (in dB) for upper edge of UNII-1 frequency band"
307 int "HE Transmit power backoff (in dB) for upper edge of UNII-1 frequency band"
[all …]
/Zephyr-latest/subsys/logging/
Dlog_core.c558 k_timeout_t backoff = K_NO_WAIT; in z_impl_log_process() local
565 msg = z_log_msg_claim(&backoff); in z_impl_log_process()
571 } else if (CONFIG_LOG_PROCESSING_LATENCY_US > 0 && !K_TIMEOUT_EQ(backoff, K_NO_WAIT)) { in z_impl_log_process()
576 k_timer_start(&log_process_thread_timer, backoff, K_NO_WAIT); in z_impl_log_process()
715 union log_msg_generic *z_log_msg_claim_oldest(k_timeout_t *backoff) in z_log_msg_claim_oldest() argument
759 *backoff = K_TICKS(diff); in z_log_msg_claim_oldest()
761 *backoff = K_TICKS((diff * sys_clock_hw_cycles_per_sec()) / in z_log_msg_claim_oldest()
781 union log_msg_generic *z_log_msg_claim(k_timeout_t *backoff) in z_log_msg_claim() argument
789 return z_log_msg_claim_oldest(backoff); in z_log_msg_claim()
/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/
DKconfig335 bool "Software CSMA backoff logic"
338 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.