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)

View File

@@ -0,0 +1,3 @@
# Zephyr configuration for the Gateway
CONFIG_NETWORKING=y
CONFIG_NET_TCP=y

View File

@@ -0,0 +1,13 @@
/*
* Copyright (c) 2025 Eduard Iten
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/kernel.h>
int main(void)
{
printk("Hello from Gateway!\n");
return 0;
}