Your broker works very fine. I am able to pub and sub from an external device with good response times.
Now I want to communicate from the ESP broker device to an external one, but I fail.
Within a small user routine the following statements are performed:
retval = MQTT_Publish(&mqttClient, "/test", "Hallo", 5, 0, 0);
if(retval)
os_printf(">>> retval OK\r\n");
The pub routine returns true, but the mqttPublishedCb is not triggered.
Any hint what I did wrong?
Many thanks, Walter