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
+1 -1
View File
@@ -17,4 +17,4 @@ target_sources(${mqtt} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/main/custom_outbox.cp
# First we get our dependency
idf_component_get_property(pthread pthread COMPONENT_LIB)
# And them we link the components
target_link_libraries(${mqtt} ${pthread})
target_link_libraries(${mqtt} PRIVATE ${pthread})
@@ -2,7 +2,7 @@ menu "Example Configuration"
config BROKER_URL
string "Broker URL"
default "mqtt://mqtt.eclipseprojects.io"
default "mqtt://test.mosquitto.org"
help
URL of the broker to connect to
+1 -1
View File
@@ -2,7 +2,7 @@ menu "Example Configuration"
config BROKER_URL
string "Broker URL"
default "mqtt://mqtt.eclipseprojects.io"
default "mqtt://test.mosquitto.org"
help
URL of the broker to connect to
+1 -1
View File
@@ -2,7 +2,7 @@ menu "Example Configuration"
config BROKER_URI
string "Broker URL"
default "mqtts://mqtt.eclipseprojects.io:8883"
default "mqtts://test.mosquitto.org:8883"
help
URL of an mqtt broker which this example connects to.
+1 -1
View File
@@ -2,7 +2,7 @@ menu "Example Configuration"
config BROKER_URL
string "Broker URL"
default "mqtt://mqtt.eclipseprojects.io"
default "mqtt://test.mosquitto.org"
help
URL of the broker to connect to
+1 -1
View File
@@ -2,7 +2,7 @@ menu "Example Configuration"
config BROKER_URI
string "Broker URL"
default "ws://mqtt.eclipseprojects.io:80/mqtt"
default "ws://test.mosquitto.org:80/mqtt"
help
URL of an mqtt broker which this example connects to.
+1 -1
View File
@@ -2,7 +2,7 @@ menu "Example Configuration"
config BROKER_URI
string "Broker URL"
default "wss://mqtt.eclipseprojects.io:443/mqtt"
default "wss://test.mosquitto.org:443/mqtt"
help
URL of an mqtt broker which this example connects to.