start mqtt client (based on paho.mqtt.c), basically works

This commit is contained in:
2026-03-13 23:56:55 +03:00
parent 767bb2b382
commit feb86b15f8
114 changed files with 37878 additions and 6 deletions

7
3rd/paho.mqtt.c/fmt.sh Normal file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
#
# Runs clang format over the whole project tree, excluding the 'build/' directory.
#
find . -type d \( -path './build' \) -prune -iname '*.h' -o -iname '*.c' | xargs clang-format -i