mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-14 16:57:41 -04:00
The API of FreeRTOS/backoffAlgorithm library has changed to remove dependency on random number generator; instead require the caller to generate the random number and pass it to the BackoffAlgorithm_GetNextBackoff API for backoff period calculation. This PR updates the submodule pointer commit, and updates the demos and tests to use the simplied library API |
||
---|---|---|
.. | ||
backoff_algorithm@8a9a665429 | ||
logging | ||
mbedtls_freertos | ||
readme.txt |
Directories: + Utilities/backoff_algorithm contains a utility that calculates an exponential back off time, with some jitter. It is used to ensure fleets of IoT devices that become disconnected don't all try and reconnect at the same time. + Utilities/logging contains header files for use with the core libraries logging macros. See https://www.FreeRTOS.org/logging.html. + Utililties/mbedtls_freertos contains a few FreeRTOS specifics required by mbedTLS.