-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pkg/paho-mqtt: Update doc.txt #21136
base: master
Are you sure you want to change the base?
Conversation
Add some Information about the paho stack
@see https://github.com/eclipse/paho.mqtt.embedded-c | ||
|
||
The Eclipse Paho project provides open-source client | ||
implementations of MQTT. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't that redundant to the @brief
text?
|
||
# Implementation specific information | ||
|
||
- The Main-Loop is running in the Task mqtt_riot_run() with a default-cyclus of 30ms (MQTT_YIELD_POLLING_MS) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- The Main-Loop is running in the Task mqtt_riot_run() with a default-cyclus of 30ms (MQTT_YIELD_POLLING_MS) | |
- The main loop is running in a dedicated thread (` paho_mqtt_riot`) in the function `mqtt_riot_run()` with a default-cyclus of 30ms (MQTT_YIELD_POLLING_MS) |
I'm not sure if we have a well defined meaning for the term "Task" in RIOT.
- During publish a topic with MQTTPublish() and QoS>0, the functions blocks until | ||
it receive des One Acknowledge (QoS=1) or two Acknowledges (Qos=2). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- During publish a topic with MQTTPublish() and QoS>0, the functions blocks until | |
it receive des One Acknowledge (QoS=1) or two Acknowledges (Qos=2). | |
- When publishing a topic with `MQTTPublish()` and QoS>0, the functions blocks until | |
it one acknowledgement (QoS=1) or two acknowledgements (QoS=2) are received.. |
Thanks for the contribution and improvement - and welcome to RIOT! And sorry for my somewhat pedantic review: actually I thought to review a PR my a fellow RIOT maintainer. 😅 |
Add some Information about the paho stack in the doc.txt file
Contribution description
Testing procedure
Issues/PRs references