fix: Mqtt examples default broker

Moves examples to different public broker and correct Cmake 4.x
incompatibility
This commit is contained in:
Euripedes Rocha Filho
2026-05-26 16:23:47 +02:00
parent 044644ed75
commit 6cf94c4011
10 changed files with 15 additions and 15 deletions
+2 -2
View File
@@ -2,13 +2,13 @@ menu "ESP-MQTT Unit Test Config"
config MQTT_TEST_BROKER_URI
string "URI of the test broker"
default "mqtt://mqtt.eclipseprojects.io"
default "mqtt://test.mosquitto.org"
help
URL of an mqtt broker which this test connects to.
config MQTT5_TEST_BROKER_URI
string "URI of the test broker"
default "mqtt://mqtt.eclipseprojects.io"
default "mqtt://test.mosquitto.org"
help
URL of an mqtt broker which this test connects to.
endmenu
+2 -2
View File
@@ -2,13 +2,13 @@ menu "ESP-MQTT Unit Test Config"
config MQTT_TEST_BROKER_URI
string "URI of the test broker"
default "mqtt://mqtt.eclipseprojects.io"
default "mqtt://test.mosquitto.org"
help
URL of an mqtt broker which this test connects to.
config MQTT5_TEST_BROKER_URI
string "URI of the test broker"
default "mqtt://mqtt.eclipseprojects.io"
default "mqtt://test.mosquitto.org"
help
URL of an mqtt broker which this test connects to.
endmenu
@@ -2,25 +2,25 @@ menu "Example Configuration"
config EXAMPLE_BROKER_SSL_URI
string "Broker SSL URL"
default "mqtts://mqtt.eclipseprojects.io:8883"
default "mqtts://test.mosquitto.org:8883"
help
URL of an mqtt broker for ssl transport
config EXAMPLE_BROKER_TCP_URI
string "Broker TCP URL"
default "mqtt://mqtt.eclipseprojects.io:1883"
default "mqtt://test.mosquitto.org:1883"
help
URL of an mqtt broker for tcp transport
config EXAMPLE_BROKER_WS_URI
string "Broker WS URL"
default "ws://mqtt.eclipseprojects.io:80/mqtt"
default "ws://test.mosquitto.org:80/mqtt"
help
URL of an mqtt broker for ws transport
config EXAMPLE_BROKER_WSS_URI
string "Broker WSS URL"
default "wss://mqtt.eclipseprojects.io:443/mqtt"
default "wss://test.mosquitto.org:443/mqtt"
help
URL of an mqtt broker for wss transport