FreeRTOS-Kernel/FreeRTOS-Plus/Demo/coreMQTT_Windows_Simulator
Archit Aggarwal 036ec83b65
Replace exponential_backoff with submodule to FreeRTOS/backoffAlgorithm (#419)
A new repository, FreeRTOS/backoffAlgorithm, has been created for hosting the library for backoff calculation. This repo replaces the FreeRTOS-Plus/Source/Utilities/exponential_backoff with the submodule to the new repository, and updates all the demos that use retry logic to use the backoffAlgorithm API
2020-11-24 14:54:31 -08:00
..
Common Multiple tidy up and corrections preparing for release (#390) 2020-11-09 14:50:33 -08:00
MQTT_Basic_TLS Replace exponential_backoff with submodule to FreeRTOS/backoffAlgorithm (#419) 2020-11-24 14:54:31 -08:00
MQTT_Keep_Alive Replace exponential_backoff with submodule to FreeRTOS/backoffAlgorithm (#419) 2020-11-24 14:54:31 -08:00
MQTT_Multitask Replace exponential_backoff with submodule to FreeRTOS/backoffAlgorithm (#419) 2020-11-24 14:54:31 -08:00
MQTT_Mutual_Auth Replace exponential_backoff with submodule to FreeRTOS/backoffAlgorithm (#419) 2020-11-24 14:54:31 -08:00
MQTT_Plain_Text Replace exponential_backoff with submodule to FreeRTOS/backoffAlgorithm (#419) 2020-11-24 14:54:31 -08:00
MQTT_Serializer Replace exponential_backoff with submodule to FreeRTOS/backoffAlgorithm (#419) 2020-11-24 14:54:31 -08:00
readme.txt Multiple tidy up and corrections preparing for release (#390) 2020-11-09 14:50:33 -08:00
readme_coreMQTT.url Update urls in code to those on the server (#396) 2020-11-10 10:53:14 -08:00

The subdirectories of this directory contain multiple examples that demonstrate
coreMQTT using in both single and multi-threaded scenarios, as well as with
both plain text and authenticated and encrypted network interfaces.

The multi threaded example creates an MQTT agent (or daemon task).  It is thread
safe because only the agent task is allowed to access the coreMQTT API - hence
the API is only accessed from one FreeRTOS task.  Other tasks and interrupts
needing to interact with the MQTT agent do so through a thread safe queue.
We are generalising this technique for future coreMQTT releases, which will have
a re-usable agent component.

! Plain text examples are for ease of evaluation only - product devices should
! always use authenticated and encrypted communication.  Never send private or
! sensitive data on an unencrypted connection.