FreeRTOS
|
MQTT Init Parameters. More...
#include <aws_mqtt_lib.h>
Data Fields | |
void * | pvCallbackContext |
MQTTEventCallback_t | pxCallback |
void * | pvSendContext |
MQTTSend_t | pxMQTTSendFxn |
MQTTGetTicks_t | pxGetTicksFxn |
MQTTBufferPoolInterface_t | xBufferPoolInterface |
MQTT Init Parameters.
Parameters passed to the MQTT_Init API.
Definition at line 502 of file aws_mqtt_lib.h.
void* pvCallbackContext |
Passed as it is in the event callback.
Definition at line 504 of file aws_mqtt_lib.h.
void* pvSendContext |
Passed as it is in the send callback.
Definition at line 506 of file aws_mqtt_lib.h.
MQTTEventCallback_t pxCallback |
User supplied callback to get notified of various events. Can be NULL.
Definition at line 505 of file aws_mqtt_lib.h.
MQTTGetTicks_t pxGetTicksFxn |
User supplied callback to get the current tick count. Can be NULL.
Definition at line 508 of file aws_mqtt_lib.h.
MQTTSend_t pxMQTTSendFxn |
User supplied callback to transmit data. Must not be NULL.
Definition at line 507 of file aws_mqtt_lib.h.
MQTTBufferPoolInterface_t xBufferPoolInterface |
User supplied buffer pool interface.
Definition at line 509 of file aws_mqtt_lib.h.