ESP-IDF
TAG
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
TAG
TAG variable
Syntax
Show:
Summary
Declaration
from
mqtt_client.c:17
static
const
char
*
TAG
=
"mqtt_client"
;
Examples
References
from
examples
Code
Location
Referrer
static
const
char
*
TAG
=
"mqtt_client"
;
mqtt_client.c:17
ESP_LOGV
(
TAG
,
"%s: transport_read(): call timed out before data was ready!"
,
__func__
)
;
mqtt_client.c:65
esp_mqtt_handle_transport_read_error()
ESP_LOGE
(
TAG
,
"%s: transport_read(): EOF"
,
__func__
)
;
mqtt_client.c:70
esp_mqtt_handle_transport_read_error()
ESP_LOGE
(
TAG
,
"%s: transport_read() error: errno=%d"
,
__func__
,
errno
)
;
mqtt_client.c:73
esp_mqtt_handle_transport_read_error()
ESP_OK_CHECK
(
TAG
,
esp_mqtt_set_cert_key_data
(
ssl
,
MQTT_SSL_DATA_API_CA_CERT
,
cfg
->
cacert_buf
,
cfg
->
cacert_bytes
)
,
mqtt_client.c:161
esp_mqtt_set_ssl_transport_properties()
ESP_LOGE
(
TAG
,
"PSK authentication configured but not enabled in menuconfig: Please enable ESP_TLS_PSK_VERIFICATION option"
)
;
mqtt_client.c:170
esp_mqtt_set_ssl_transport_properties()
ESP_LOGE
(
TAG
,
"Secure element not enabled for esp-tls in menuconfig"
)
;
mqtt_client.c:217
esp_mqtt_set_ssl_transport_properties()
ESP_LOGE
(
TAG
,
"Digital Signature not enabled for esp-tls in menuconfig"
)
;
mqtt_client.c:231
esp_mqtt_set_ssl_transport_properties()
ESP_OK_CHECK
(
TAG
,
esp_mqtt_set_cert_key_data
(
ssl
,
MQTT_SSL_DATA_API_CLIENT_CERT
,
cfg
->
clientcert_buf
,
cfg
->
clientcert_bytes
)
,
mqtt_client.c:239
esp_mqtt_set_ssl_transport_properties()
ESP_OK_CHECK
(
TAG
,
esp_mqtt_set_cert_key_data
(
ssl
,
MQTT_SSL_DATA_API_CLIENT_KEY
,
cfg
->
clientkey_buf
,
cfg
->
clientkey_bytes
)
,
mqtt_client.c:241
esp_mqtt_set_ssl_transport_properties()
ESP_LOGE
(
TAG
,
"Invalid configuration"
)
;
mqtt_client.c:267
esp_mqtt_check_cfg_conflict()
ESP_LOGW
(
TAG
,
"SSL related configs set, but the URI scheme specifies a non-SSL scheme, scheme = %s"
,
cfg
->
scheme
)
;
mqtt_client.c:280
esp_mqtt_check_cfg_conflict()
ESP_LOGW
(
TAG
,
"SSL related configs set, but the transport protocol is a non-SSL scheme, transport = %d"
,
user_cfg
->
broker
.
address
.
transport
)
;
mqtt_client.c:282
esp_mqtt_check_cfg_conflict()
ESP_LOGW
(
TAG
,
"Transport config set, but overridden by scheme from URI: transport = %d, uri scheme = %s"
,
user_cfg
->
broker
.
address
.
transport
,
cfg
->
scheme
)
;
mqtt_client.c:288
esp_mqtt_check_cfg_conflict()
ESP_MEM_CHECK
(
TAG
,
client
->
transport_list
,
return
ESP_ERR_NO_MEM
)
;
mqtt_client.c:316
esp_mqtt_client_create_transport()
ESP_MEM_CHECK
(
TAG
,
tcp
,
return
ESP_ERR_NO_MEM
)
;
mqtt_client.c:320
esp_mqtt_client_create_transport()
ESP_MEM_CHECK
(
TAG
,
ws
,
return
ESP_ERR_NO_MEM
)
;
mqtt_client.c:329
esp_mqtt_client_create_transport()
ESP_MEM_CHECK
(
TAG
,
ssl
,
return
ESP_ERR_NO_MEM
)
;
mqtt_client.c:346
esp_mqtt_client_create_transport()
ESP_MEM_CHECK
(
TAG
,
wss
,
return
ESP_ERR_NO_MEM
)
;
mqtt_client.c:355
esp_mqtt_client_create_transport()
ESP_LOGE
(
TAG
,
"Not support this mqtt scheme %s"
,
client
->
config
->
scheme
)
;
mqtt_client.c:374
esp_mqtt_client_create_transport()
ESP_LOGE
(
TAG
,
"No scheme found"
)
;
mqtt_client.c:378
esp_mqtt_client_create_transport()
ESP_LOGE
(
TAG
,
"Client was not initialized"
)
;
mqtt_client.c:387
esp_mqtt_set_config()
ESP_MEM_CHECK
(
TAG
,
client
->
config
,
{
mqtt_client.c:395
esp_mqtt_set_config()
ESP_MEM_CHECK
(
TAG
,
client
->
mqtt_state
.
in_buffer
,
goto
_mqtt_set_config_failed
)
;
mqtt_client.c:415
esp_mqtt_set_config()
ESP_MEM_CHECK
(
TAG
,
esp_mqtt_set_if_config
(
config
->
broker
.
address
.
hostname
,
&
client
->
config
->
host
)
,
goto
_mqtt_set_config_failed
)
;
mqtt_client.c:438
esp_mqtt_set_config()
ESP_MEM_CHECK
(
TAG
,
esp_mqtt_set_if_config
(
config
->
broker
.
address
.
path
,
&
client
->
config
->
path
)
,
goto
_mqtt_set_config_failed
)
;
mqtt_client.c:439
esp_mqtt_set_config()
ESP_MEM_CHECK
(
TAG
,
esp_mqtt_set_if_config
(
config
->
credentials
.
username
,
&
client
->
mqtt_state
.
connection
.
information
.
username
)
,
goto
_mqtt_set_config_failed
)
;
mqtt_client.c:440
esp_mqtt_set_config()
ESP_MEM_CHECK
(
TAG
,
esp_mqtt_set_if_config
(
config
->
credentials
.
authentication
.
password
,
&
client
->
mqtt_state
.
connection
.
information
.
password
)
,
goto
_mqtt_set_config_failed
)
;
mqtt_client.c:441
esp_mqtt_set_config()
ESP_MEM_CHECK
(
TAG
,
esp_mqtt_set_if_config
(
config
->
credentials
.
client_id
,
&
client
->
mqtt_state
.
connection
.
information
.
client_id
)
,
goto
_mqtt_set_config_failed
)
;
mqtt_client.c:445
esp_mqtt_set_config()
ESP_MEM_CHECK
(
TAG
,
client
->
mqtt_state
.
connection
.
information
.
client_id
,
goto
_mqtt_set_config_failed
)
;
mqtt_client.c:449
esp_mqtt_set_config()
ESP_LOGD
(
TAG
,
"MQTT client_id=%s"
,
client
->
mqtt_state
.
connection
.
information
.
client_id
)
;
mqtt_client.c:450
esp_mqtt_set_config()
ESP_MEM_CHECK
(
TAG
,
esp_mqtt_set_if_config
(
config
->
broker
.
address
.
uri
,
&
client
->
config
->
uri
)
,
goto
_mqtt_set_config_failed
)
;
mqtt_client.c:453
esp_mqtt_set_config()
ESP_MEM_CHECK
(
TAG
,
esp_mqtt_set_if_config
(
config
->
session
.
last_will
.
topic
,
&
client
->
mqtt_state
.
connection
.
information
.
will_topic
)
,
goto
_mqtt_set_config_failed
)
;
mqtt_client.c:454
esp_mqtt_set_config()
ESP_MEM_CHECK
(
TAG
,
client
->
mqtt_state
.
connection
.
information
.
will_message
,
goto
_mqtt_set_config_failed
)
;
mqtt_client.c:459
esp_mqtt_set_config()
ESP_MEM_CHECK
(
TAG
,
client
->
mqtt_state
.
connection
.
information
.
will_message
,
goto
_mqtt_set_config_failed
)
;
mqtt_client.c:465
esp_mqtt_set_config()
ESP_LOGE
(
TAG
,
"Clean Session flag must be true if client has a null id"
)
;
mqtt_client.c:478
esp_mqtt_set_config()
ESP_LOGE
(
TAG
,
"Please first enable MQTT_PROTOCOL_5 feature in menuconfig"
)
;
mqtt_client.c:505
esp_mqtt_set_config()
ESP_MEM_CHECK
(
TAG
,
client
->
config
->
if_name
,
goto
_mqtt_set_config_failed
)
;
mqtt_client.c:535
esp_mqtt_set_config()
ESP_MEM_CHECK
(
TAG
,
client
->
config
->
alpn_protos
,
goto
_mqtt_set_config_failed
)
;
mqtt_client.c:553
esp_mqtt_set_config()
ESP_MEM_CHECK
(
TAG
,
client
->
config
->
alpn_protos
[
i
]
,
goto
_mqtt_set_config_failed
)
;
mqtt_client.c:557
esp_mqtt_set_config()
ESP_MEM_CHECK
(
TAG
,
client
->
config
->
clientkey_password
,
goto
_mqtt_set_config_failed
)
;
mqtt_client.c:579
esp_mqtt_set_config()
ESP_MEM_CHECK
(
TAG
,
client
->
config
->
scheme
,
goto
_mqtt_set_config_failed
)
;
mqtt_client.c:588
esp_mqtt_set_config()
ESP_MEM_CHECK
(
TAG
,
client
->
config
->
scheme
,
goto
_mqtt_set_config_failed
)
;
mqtt_client.c:593
esp_mqtt_set_config()
ESP_MEM_CHECK
(
TAG
,
client
->
config
->
scheme
,
goto
_mqtt_set_config_failed
)
;
mqtt_client.c:599
esp_mqtt_set_config()
ESP_MEM_CHECK
(
TAG
,
client
->
config
->
scheme
,
goto
_mqtt_set_config_failed
)
;
mqtt_client.c:605
esp_mqtt_set_config()
ESP_LOGE
(
TAG
,
"No PING_RESP, disconnected"
)
;
mqtt_client.c:679
process_keepalive()
ESP_LOGE
(
TAG
,
"Can't send ping, disconnected"
)
;
mqtt_client.c:689
process_keepalive()
ESP_LOGE
(
TAG
,
"Writing failed: errno=%d"
,
errno
)
;
mqtt_client.c:709
esp_mqtt_write()
ESP_LOGE
(
TAG
,
"Writing didn't complete in specified timeout: errno=%d"
,
errno
)
;
mqtt_client.c:715
esp_mqtt_write()
ESP_LOGE
(
TAG
,
"Connect message cannot be created"
)
;
mqtt_client.c:738
esp_mqtt_connect()
ESP_LOGD
(
TAG
,
"Sending MQTT CONNECT message, type: %d, id: %04X"
,
mqtt_client.c:752
esp_mqtt_connect()
ESP_LOGE
(
TAG
,
"%s: mqtt_message_receive() returned %d"
,
__func__
,
read_len
)
;
mqtt_client.c:770
esp_mqtt_connect()
ESP_LOGE
(
TAG
,
"Invalid MSG_TYPE response: %d, read_len: %d"
,
mqtt_get_type
(
client
->
mqtt_state
.
in_buffer
)
,
read_len
)
;
mqtt_client.c:775
esp_mqtt_connect()
ESP_LOGD
(
TAG
,
"Connected"
)
;
mqtt_client.c:789
esp_mqtt_connect()
ESP_LOGW
(
TAG
,
"Connection refused, bad protocol"
)
;
mqtt_client.c:794
esp_mqtt_connect()
ESP_LOGW
(
TAG
,
"Connection refused, server unavailable"
)
;
mqtt_client.c:797
esp_mqtt_connect()
ESP_LOGW
(
TAG
,
"Connection refused, bad username or password"
)
;
mqtt_client.c:800
esp_mqtt_connect()
ESP_LOGW
(
TAG
,
"Connection refused, not authorized"
)
;
mqtt_client.c:803
esp_mqtt_connect()
ESP_LOGW
(
TAG
,
"Connection refused, Unknow reason"
)
;
mqtt_client.c:806
esp_mqtt_connect()
ESP_LOGD
(
TAG
,
"Reconnect after %d ms"
,
client
->
wait_timeout_ms
)
;
mqtt_client.c:829
esp_mqtt_abort_connection()
ESP_MEM_CHECK
(
TAG
,
client
->
event
.
error_handle
,
return
false
)
mqtt_client.c:839
create_client_data()
ESP_MEM_CHECK
(
TAG
,
client
->
api_lock
,
return
false
)
;
mqtt_client.c:842
create_client_data()
ESP_MEM_CHECK
(
TAG
,
client
->
outbox
,
return
false
)
;
mqtt_client.c:845
create_client_data()
ESP_MEM_CHECK
(
TAG
,
client
->
status_bits
,
return
false
)
;
mqtt_client.c:847
create_client_data()
ESP_MEM_CHECK
(
TAG
,
client
,
return
NULL
)
;
mqtt_client.c:862
esp_mqtt_client_init()
ESP_MEM_CHECK
(
TAG
,
ret
,
return
NULL
)
;
mqtt_client.c:929
create_string()
ESP_LOGE
(
TAG
,
"Error parse uri = %s"
,
uri
)
;
mqtt_client.c:940
esp_mqtt_client_set_uri()
ESP_LOGE
(
TAG
,
"%s(%d): %s"
,
__FUNCTION__
,
__LINE__
,
"Memory exhausted"
)
;
mqtt_client.c:982
esp_mqtt_client_set_uri()
ESP_LOGE
(
TAG
,
"%s: esp_mqtt5_get_publish_data() failed"
,
__func__
)
;
mqtt_client.c:1066
deliver_publish()
ESP_LOGE
(
TAG
,
"%s: mqtt_get_publish_topic() failed"
,
__func__
)
;
mqtt_client.c:1074
deliver_publish()
ESP_LOGD
(
TAG
,
"%s: msg_topic_len=%"
NEWLIB_NANO_COMPAT_FORMAT
,
__func__
,
NEWLIB_NANO_COMPAT_CAST
(
msg_topic_len
)
)
;
mqtt_client.c:1077
deliver_publish()
ESP_LOGE
(
TAG
,
"%s: mqtt_get_publish_data() failed"
,
__func__
)
;
mqtt_client.c:1082
deliver_publish()
ESP_LOGD
(
TAG
,
"Get data len= %"
NEWLIB_NANO_COMPAT_FORMAT
", topic len=%"
NEWLIB_NANO_COMPAT_FORMAT
", total_data: %d offset: %"
NEWLIB_NANO_COMPAT_FORMAT
,
mqtt_client.c:1099
deliver_publish()
ESP_LOGE
(
TAG
,
"Failed to acquire suback data"
)
;
mqtt_client.c:1148
deliver_suback()
ESP_LOGD
(
TAG
,
"Removed pending_id=%d"
,
client
->
mqtt_state
.
pending_msg_id
)
;
mqtt_client.c:1178
remove_initiator_message()
ESP_LOGD
(
TAG
,
"Failed to remove pending_id=%d"
,
client
->
mqtt_state
.
pending_msg_id
)
;
mqtt_client.c:1182
remove_initiator_message()
ESP_LOGD
(
TAG
,
"mqtt_enqueue id: %d, type=%d successful"
,
mqtt_client.c:1188
mqtt_enqueue()
ESP_LOGD
(
TAG
,
"%s: first byte: 0x%x"
,
__func__
,
*
buf
)
;
mqtt_client.c:1229
mqtt_message_receive()
ESP_LOGE
(
TAG
,
"%s: received a message with an invalid header=0x%x"
,
__func__
,
*
buf
)
;
mqtt_client.c:1235
mqtt_message_receive()
ESP_LOGD
(
TAG
,
"%s: read \"remaining length\" byte: 0x%x"
,
__func__
,
*
buf
)
;
mqtt_client.c:1255
mqtt_message_receive()
ESP_LOGD
(
TAG
,
"%s: total message length: %d (already read: %"
NEWLIB_NANO_COMPAT_FORMAT
")"
,
__func__
,
total_len
,
NEWLIB_NANO_COMPAT_CAST
(
client
->
mqtt_state
.
in_buffer_read_len
)
)
;
mqtt_client.c:1261
mqtt_message_receive()
ESP_LOGD
(
TAG
,
"%s: read_len=%d"
,
__func__
,
read_len
)
;
mqtt_client.c:1272
mqtt_message_receive()
ESP_LOGD
(
TAG
,
"%s: transport_read(): message reading left in progress :: total message length: %d (already read: %"
NEWLIB_NANO_COMPAT_FORMAT
")"
,
mqtt_client.c:1279
mqtt_message_receive()
ESP_LOGD
(
TAG
,
"%s: total len modified to %d as message longer than input buffer"
,
__func__
,
total_len
)
;
mqtt_client.c:1287
mqtt_message_receive()
ESP_LOGE
(
TAG
,
"%s: message is too big, insufficient buffer size"
,
__func__
)
;
mqtt_client.c:1289
mqtt_message_receive()
ESP_LOGE
(
TAG
,
"%s: message is too big, insufficient buffer size"
,
__func__
)
;
mqtt_client.c:1296
mqtt_message_receive()
ESP_LOGD
(
TAG
,
"%s: read_len=%d"
,
__func__
,
read_len
)
;
mqtt_client.c:1303
mqtt_message_receive()
ESP_LOGD
(
TAG
,
"%s: transport_read(): message reading left in progress :: total message length: %d (already read: %"
NEWLIB_NANO_COMPAT_FORMAT
")"
,
mqtt_client.c:1309
mqtt_message_receive()
ESP_LOGV
(
TAG
,
"%s: transport_read():%"
NEWLIB_NANO_COMPAT_FORMAT
" %"
NEWLIB_NANO_COMPAT_FORMAT
,
__func__
,
mqtt_client.c:1314
mqtt_message_receive()
ESP_LOGE
(
TAG
,
"%s: Network timeout while reading MQTT message"
,
__func__
)
;
mqtt_client.c:1336
mqtt_process_receive()
ESP_LOGE
(
TAG
,
"%s: mqtt_message_receive() returned %d"
,
__func__
,
recv
)
;
mqtt_client.c:1342
mqtt_process_receive()
ESP_LOGD
(
TAG
,
"msg_type=%d, msg_id=%d"
,
msg_type
,
msg_id
)
;
mqtt_client.c:1358
mqtt_process_receive()
ESP_LOGD
(
TAG
,
"deliver_suback, message_length_read=%"
NEWLIB_NANO_COMPAT_FORMAT
", message_length=%"
NEWLIB_NANO_COMPAT_FORMAT
,
mqtt_client.c:1366
mqtt_process_receive()
ESP_LOGE
(
TAG
,
"Failed to deliver suback message id=%d"
,
msg_id
)
;
mqtt_client.c:1369
mqtt_process_receive()
ESP_LOGD
(
TAG
,
"UnSubscribe successful"
)
;
mqtt_client.c:1379
mqtt_process_receive()
ESP_LOGD
(
TAG
,
"deliver_publish, message_length_read=%"
NEWLIB_NANO_COMPAT_FORMAT
", message_length=%"
NEWLIB_NANO_COMPAT_FORMAT
,
NEWLIB_NANO_COMPAT_CAST
(
client
->
mqtt_state
.
in_buffer_read_len
)
,
NEWLIB_NANO_COMPAT_CAST
(
client
->
mqtt_state
.
message_length
)
)
;
mqtt_client.c:1385
mqtt_process_receive()
ESP_LOGE
(
TAG
,
"Failed to deliver publish message id=%d"
,
msg_id
)
;
mqtt_client.c:1387
mqtt_process_receive()
ESP_LOGE
(
TAG
,
"Publish response message PUBACK or PUBREC cannot be created"
)
;
mqtt_client.c:1409
mqtt_process_receive()
ESP_LOGD
(
TAG
,
"Queue response QoS: %d"
,
msg_qos
)
;
mqtt_client.c:1413
mqtt_process_receive()
ESP_LOGE
(
TAG
,
"Error write qos msg repsonse, qos = %d"
,
msg_qos
)
;
mqtt_client.c:1416
mqtt_process_receive()
ESP_LOGD
(
TAG
,
"received MQTT_MSG_TYPE_PUBACK, finish QoS1 publish"
)
;
mqtt_client.c:1428
mqtt_process_receive()
ESP_LOGD
(
TAG
,
"received MQTT_MSG_TYPE_PUBREC"
)
;
mqtt_client.c:1437
mqtt_process_receive()
ESP_LOGI
(
TAG
,
"MQTT_MSG_TYPE_PUBREC return code is %d"
,
mqtt5_msg_get_reason_code
(
client
->
mqtt_state
.
in_buffer
,
client
->
mqtt_state
.
in_buffer_read_len
)
)
;
mqtt_client.c:1440
mqtt_process_receive()
ESP_LOGE
(
TAG
,
"Publish response message PUBREL cannot be created"
)
;
mqtt_client.c:1447
mqtt_process_receive()
ESP_LOGD
(
TAG
,
"received MQTT_MSG_TYPE_PUBREL"
)
;
mqtt_client.c:1455
mqtt_process_receive()
ESP_LOGI
(
TAG
,
"MQTT_MSG_TYPE_PUBREL return code is %d"
,
mqtt5_msg_get_reason_code
(
client
->
mqtt_state
.
in_buffer
,
client
->
mqtt_state
.
in_buffer_read_len
)
)
;
mqtt_client.c:1458
mqtt_process_receive()
ESP_LOGE
(
TAG
,
"Publish response message PUBCOMP cannot be created"
)
;
mqtt_client.c:1465
mqtt_process_receive()
ESP_LOGD
(
TAG
,
"received MQTT_MSG_TYPE_PUBCOMP"
)
;
mqtt_client.c:1472
mqtt_process_receive()
ESP_LOGD
(
TAG
,
"Receive MQTT_MSG_TYPE_PUBCOMP, finish QoS2 publish"
)
;
mqtt_client.c:1479
mqtt_process_receive()
ESP_LOGD
(
TAG
,
"MQTT_MSG_TYPE_PINGRESP"
)
;
mqtt_client.c:1488
mqtt_process_receive()
ESP_LOGD
(
TAG
,
"Sending Duplicated QoS%d message with id=%d"
,
client
->
mqtt_state
.
pending_publish_qos
,
client
->
mqtt_state
.
pending_msg_id
)
;
mqtt_client.c:1511
mqtt_resend_queued()
ESP_LOGE
(
TAG
,
"Error to resend data "
)
;
mqtt_client.c:1516
mqtt_resend_queued()
ESP_LOGE
(
TAG
,
"Error in running event_loop %d"
,
ret
)
;
mqtt_client.c:1565
run_event_loop()
ESP_LOGE
(
TAG
,
"Failed to create transport list"
)
;
mqtt_client.c:1598
esp_mqtt_task()
ESP_LOGE
(
TAG
,
"There are no transports valid, stop mqtt client, config scheme = %s"
,
client
->
config
->
scheme
)
;
mqtt_client.c:1606
esp_mqtt_task()
ESP_LOGE
(
TAG
,
"Error transport connect"
)
;
mqtt_client.c:1624
esp_mqtt_task()
ESP_LOGD
(
TAG
,
"Transport connected to %s://%s:%d"
,
client
->
config
->
scheme
,
client
->
config
->
host
,
client
->
config
->
port
)
;
mqtt_client.c:1629
esp_mqtt_task()
ESP_LOGE
(
TAG
,
"MQTT connect failed"
)
;
mqtt_client.c:1631
esp_mqtt_task()
ESP_LOGE
(
TAG
,
"Failed to remove queued qos0 message from the outbox"
)
;
mqtt_client.c:1671
esp_mqtt_task()
ESP_LOGD
(
TAG
,
"Refreshing the connection..."
)
;
mqtt_client.c:1704
esp_mqtt_task()
ESP_LOGD
(
TAG
,
"Reconnecting per user request..."
)
;
mqtt_client.c:1716
esp_mqtt_task()
ESP_LOGD
(
TAG
,
"Reconnecting..."
)
;
mqtt_client.c:1722
esp_mqtt_task()
ESP_LOGE
(
TAG
,
"MQTT client error, client is in an unrecoverable state."
)
;
mqtt_client.c:1731
esp_mqtt_task()
ESP_LOGE
(
TAG
,
"Poll read error: %d, aborting connection"
,
errno
)
;
mqtt_client.c:1737
esp_mqtt_task()
ESP_LOGE
(
TAG
,
"Client was not initialized"
)
;
mqtt_client.c:1754
esp_mqtt_client_start()
ESP_LOGE
(
TAG
,
"Client has started"
)
;
mqtt_client.c:1759
esp_mqtt_client_start()
ESP_LOGD
(
TAG
,
"Core selection disabled"
)
;
mqtt_client.c:1771
esp_mqtt_client_start()
ESP_LOGE
(
TAG
,
"Error create mqtt task"
)
;
mqtt_client.c:1773
esp_mqtt_client_start()
ESP_LOGE
(
TAG
,
"Client was not initialized"
)
;
mqtt_client.c:1784
esp_mqtt_client_disconnect()
ESP_LOGI
(
TAG
,
"Client asked to disconnect"
)
;
mqtt_client.c:1787
esp_mqtt_client_disconnect()
ESP_LOGE
(
TAG
,
"Client was not initialized"
)
;
mqtt_client.c:1795
esp_mqtt_client_reconnect()
ESP_LOGI
(
TAG
,
"Client force reconnect requested"
)
;
mqtt_client.c:1798
esp_mqtt_client_reconnect()
ESP_LOGD
(
TAG
,
"The client is not waiting for reconnection. Ignore the request"
)
;
mqtt_client.c:1800
esp_mqtt_client_reconnect()
ESP_LOGE
(
TAG
,
"Disconnect message cannot be created"
)
;
mqtt_client.c:1824
send_disconnect_msg()
ESP_LOGE
(
TAG
,
"Error sending disconnect message"
)
;
mqtt_client.c:1828
send_disconnect_msg()
ESP_LOGE
(
TAG
,
"Client was not initialized"
)
;
mqtt_client.c:1836
esp_mqtt_client_stop()
ESP_LOGE
(
TAG
,
"Client cannot be stopped from MQTT task"
)
;
mqtt_client.c:1845
esp_mqtt_client_stop()
ESP_LOGW
(
TAG
,
"Client asked to stop, but was not started"
)
;
mqtt_client.c:1863
esp_mqtt_client_stop()
ESP_LOGE
(
TAG
,
"Ping message cannot be created"
)
;
mqtt_client.c:1873
esp_mqtt_client_ping()
ESP_LOGE
(
TAG
,
"Error sending ping"
)
;
mqtt_client.c:1878
esp_mqtt_client_ping()
ESP_LOGD
(
TAG
,
"Sent PING successful"
)
;
mqtt_client.c:1881
esp_mqtt_client_ping()
ESP_LOGE
(
TAG
,
"Client was not initialized"
)
;
mqtt_client.c:1889
esp_mqtt_client_subscribe_multiple()
ESP_LOGE
(
TAG
,
"Client has not connected"
)
;
mqtt_client.c:1898
esp_mqtt_client_subscribe_multiple()
ESP_LOGI
(
TAG
,
"MQTT5 subscribe check fail: QoS %d not accepted by broker "
,
max_qos
)
;
mqtt_client.c:1912
esp_mqtt_client_subscribe_multiple()
ESP_LOGE
(
TAG
,
"Subscribe message cannot be created"
)
;
mqtt_client.c:1929
esp_mqtt_client_subscribe_multiple()
ESP_LOGE
(
TAG
,
"Error to send subscribe message, first topic: %s, qos: %d"
,
topic_list
[
0
]
.
filter
,
topic_list
[
0
]
.
qos
)
;
mqtt_client.c:1943
esp_mqtt_client_subscribe_multiple()
ESP_LOGD
(
TAG
,
"Sent subscribe, first topic=%s, id: %d"
,
topic_list
[
0
]
.
filter
,
client
->
mqtt_state
.
pending_msg_id
)
;
mqtt_client.c:1948
esp_mqtt_client_subscribe_multiple()
ESP_LOGE
(
TAG
,
"Client was not initialized"
)
;
mqtt_client.c:1962
esp_mqtt_client_unsubscribe()
ESP_LOGE
(
TAG
,
"Client has not connected"
)
;
mqtt_client.c:1966
esp_mqtt_client_unsubscribe()
ESP_LOGE
(
TAG
,
"Unubscribe message cannot be created"
)
;
mqtt_client.c:1986
esp_mqtt_client_unsubscribe()
ESP_LOGD
(
TAG
,
"unsubscribe, topic\"%s\", id: %d"
,
topic
,
client
->
mqtt_state
.
pending_msg_id
)
;
mqtt_client.c:1989
esp_mqtt_client_unsubscribe()
ESP_LOGE
(
TAG
,
"Error to unsubscribe topic=%s"
,
topic
)
;
mqtt_client.c:1999
esp_mqtt_client_unsubscribe()
ESP_LOGD
(
TAG
,
"Sent Unsubscribe topic=%s, id: %d, successful"
,
topic
,
client
->
mqtt_state
.
pending_msg_id
)
;
mqtt_client.c:2004
esp_mqtt_client_unsubscribe()
ESP_LOGE
(
TAG
,
"Publish message cannot be created"
)
;
mqtt_client.c:2031
make_publish()
ESP_LOGE
(
TAG
,
"Client was not initialized"
)
;
mqtt_client.c:2068
esp_mqtt_client_publish()
ESP_LOGI
(
TAG
,
"MQTT5 publish check fail"
)
;
mqtt_client.c:2082
esp_mqtt_client_publish()
ESP_LOGD
(
TAG
,
"Publish: client is not connected"
)
;
mqtt_client.c:2114
esp_mqtt_client_publish()
ESP_LOGD
(
TAG
,
"Sending fragmented message, remains to send %d bytes of %d"
,
remaining_len
,
len
)
;
mqtt_client.c:2148
esp_mqtt_client_publish()
ESP_LOGW
(
TAG
,
"Publish: Losing qos0 data when client not connected"
)
;
mqtt_client.c:2177
esp_mqtt_client_publish()
ESP_LOGE
(
TAG
,
"Client was not initialized"
)
;
mqtt_client.c:2187
esp_mqtt_client_enqueue()
ESP_LOGI
(
TAG
,
"esp_mqtt_client_enqueue check fail"
)
;
mqtt_client.c:2211
esp_mqtt_client_enqueue()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
TAG
is read by 33 functions:
All items filtered out
TAG
esp_mqtt_handle_transport_read_error()
esp_mqtt_set_ssl_transport_properties()
esp_mqtt_check_cfg_conflict()
esp_mqtt_client_create_transport()
esp_mqtt_set_config()
process_keepalive()
esp_mqtt_write()
esp_mqtt_connect()
esp_mqtt_abort_connection()
create_client_data()
esp_mqtt_client_init()
create_string()
esp_mqtt_client_set_uri()
deliver_publish()
deliver_suback()
remove_initiator_message()
mqtt_enqueue()
mqtt_message_receive()
mqtt_process_receive()
mqtt_resend_queued()
run_event_loop()
esp_mqtt_task()
esp_mqtt_client_start()
esp_mqtt_client_disconnect()
esp_mqtt_client_reconnect()
send_disconnect_msg()
esp_mqtt_client_stop()
esp_mqtt_client_ping()
esp_mqtt_client_subscribe_multiple()
esp_mqtt_client_unsubscribe()
make_publish()
esp_mqtt_client_publish()
esp_mqtt_client_enqueue()
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out