Firmware hinzugefügt

This commit is contained in:
2026-07-02 14:05:56 +02:00
parent 5677bae9de
commit 16d66e57e1
7 changed files with 799 additions and 0 deletions

9
firmware/CMakeLists.txt Normal file
View File

@@ -0,0 +1,9 @@
# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(poolthermo)
FILE(GLOB app_sources src/*.c)
target_sources(app PRIVATE ${app_sources})