Initial commit for echo_bot

This commit is contained in:
2025-04-09 10:46:02 +02:00
commit 83de7f4200
6 changed files with 177 additions and 0 deletions

8
CMakeLists.txt Normal file
View File

@@ -0,0 +1,8 @@
# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(echo_bot)
target_sources(app PRIVATE src/main.c)