From 1cba00df8ccef8b54d2a1655a496a00acb1fd032 Mon Sep 17 00:00:00 2001 From: Eduard Iten Date: Tue, 22 Jul 2025 08:53:23 +0200 Subject: [PATCH] feat: Add mqtt_gateway application and .gitignore Signed-off-by: Eduard Iten --- .gitignore | 64 ++++++++++++++++++++++++++++++++++++++ software/apps/mqtt_gateway | 1 + 2 files changed, 65 insertions(+) create mode 160000 software/apps/mqtt_gateway diff --git a/.gitignore b/.gitignore index 4469528..058264d 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,65 @@ **/build + +# Zephyr build directories +build/ +build-*/ +*/build/ +**/build/ + +# Zephyr out-of-tree build directories +out-of-tree-build/ + +# Files generated by the build system +zephyr.elf +zephyr.bin +zephyr.hex +zephyr.map +zephyr.strip +zephyr.lst +zephyr.asm +zephyr.stat +zephyr.a +zephyr.o +*.o +*.a +*.so +*.so.* +*.dll +*.exe + +# Cmake +CMakeCache.txt +CMakeFiles/ +cmake_install.cmake +CTestTestfile.cmake +compile_commands.json + +# Kconfig generated files +.config +.config.old +autoconf.h + +# Doxygen +doxygen/ + +# west +.west/ +west.yml.bak + +# Editor-specific files +.vscode/ +.idea/ +*.swp +*~ +*.bak +*.orig + +# Python +__pycache__/ +*.pyc + +# Mac OS X +.DS_Store + +# Windows +Thumbs.db \ No newline at end of file diff --git a/software/apps/mqtt_gateway b/software/apps/mqtt_gateway new file mode 160000 index 0000000..6e669cf --- /dev/null +++ b/software/apps/mqtt_gateway @@ -0,0 +1 @@ +Subproject commit 6e669cfc4e400c3ef6e55c16401788ce0d804577