FreeRTOS-Kernel/FreeRTOS-Plus/Source/Utilities
Archit Aggarwal 682447445b
Bump backoffAlgorithm submodule for API change and update demos (#426)
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
2020-11-30 11:12:07 -08:00
..
backoff_algorithm@8a9a665429 Bump backoffAlgorithm submodule for API change and update demos (#426) 2020-11-30 11:12:07 -08:00
logging Allow overriding default definitions of logging macros (#384) 2020-11-09 15:07:19 -08:00
mbedtls_freertos Restructure platform directory (#382) 2020-11-05 16:47:43 -08:00
readme.txt Replace exponential_backoff with submodule to FreeRTOS/backoffAlgorithm (#419) 2020-11-24 14:54:31 -08:00

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.