feat(project): Restructure software for multi-app setup

- Reorganize the software directory to support multiple Zephyr applications (gateway, slave_node).

- Create a clear separation between applications and shared libraries.

- Add placeholder files for gateway and slave_node applications.
This commit is contained in:
2025-07-01 08:20:25 +02:00
parent 423e3947ab
commit fbeaa916b9
25 changed files with 53 additions and 1588 deletions

View File

@@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.20)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(gateway)
target_sources(app PRIVATE src/main.c)