diff options
author | xengineering <me@xengineering.eu> | 2025-07-29 12:14:12 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2025-08-10 20:01:54 +0200 |
commit | 994316b06445011cdaee51b8c02cc0ead3ab473f (patch) | |
tree | e9c654b30519fa511724bdf19dc702cee93249a7 /fw/app/src/mqtt.h | |
parent | e70f4dadc35a6e9ce87c406b0757bdd55e2ff8cf (diff) | |
download | iot-contact-994316b06445011cdaee51b8c02cc0ead3ab473f.tar iot-contact-994316b06445011cdaee51b8c02cc0ead3ab473f.tar.zst iot-contact-994316b06445011cdaee51b8c02cc0ead3ab473f.zip |
fw: app: mqtt: Add MQTT broker connectionmqtt
This is the first minimal step towards MQTT: Connecting to a broker.
Wireshark validates that there is actually MQTT data flow in both
directions.
Diffstat (limited to 'fw/app/src/mqtt.h')
-rw-r--r-- | fw/app/src/mqtt.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/fw/app/src/mqtt.h b/fw/app/src/mqtt.h new file mode 100644 index 0000000..241620f --- /dev/null +++ b/fw/app/src/mqtt.h @@ -0,0 +1,10 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public License, + * v. 2.0. If a copy of the MPL was not distributed with this file, You can + * obtain one at https://mozilla.org/MPL/2.0/. + */ + +#ifndef SRC_MQTT_H +#define SRC_MQTT_H + +#endif // !SRC_MQTT_H |